mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-17 01:25:40 -05:00
Feature/save selection (#64)
* Save selection * Add tests * Change filename in test * Code cleanup * Refactor handler * Code cleanup * Modify tests to have query selection * Change variable declaration
This commit is contained in:
@@ -32,6 +32,28 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
|
||||
/// URI for the editor that called save results
|
||||
/// </summary>
|
||||
public string OwnerUri { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Start index of the selected rows (inclusive)
|
||||
/// </summary>
|
||||
public int? RowStartIndex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// End index of the selected rows (inclusive)
|
||||
/// </summary>
|
||||
public int? RowEndIndex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Start index of the selected columns (inclusive)
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public int? ColumnStartIndex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// End index of the selected columns (inclusive)
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public int? ColumnEndIndex { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user