Excel.TableSelectionChangedEventArgs interface
Provides information about the table that raised the selection changed event.
Remarks
[Api set: ExcelApi 1.7]
Properties
| address | Gets the range address that represents the selected area of the table on a specific worksheet. |
| is |
Specifies if the selection is inside a table. |
| table |
Gets the ID of the table in which the selection changed. |
| type | Gets the type of the event. See |
| worksheet |
Gets the ID of the worksheet in which the selection changed. |
Property Details
address
Gets the range address that represents the selected area of the table on a specific worksheet.
address: string;
Property Value
string
Remarks
[Api set: ExcelApi 1.7]
isInsideTable
Specifies if the selection is inside a table. IsInsideTable must be set to true for the address to be useful.
isInsideTable: boolean;
Property Value
boolean
Remarks
[Api set: ExcelApi 1.7]
tableId
Gets the ID of the table in which the selection changed.
tableId: string;
Property Value
string
Remarks
[Api set: ExcelApi 1.7]
type
Gets the type of the event. See Excel.EventType for details.
type: "TableSelectionChanged";
Property Value
"TableSelectionChanged"
Remarks
[Api set: ExcelApi 1.7]
worksheetId
Gets the ID of the worksheet in which the selection changed.
worksheetId: string;
Property Value
string
Remarks
[Api set: ExcelApi 1.7]