Edit

Share via


Excel.TableDeletedEventArgs interface

Provides information about the table that raised the deleted event.

Remarks

[ API set: ExcelApi 1.9 ]

Properties

source

Gets the source of the event. See Excel.EventSource for details.

tableId

Gets the ID of the table that is deleted.

tableName

Gets the name of the table that is deleted.

type

Gets the type of the event. See Excel.EventType for details.

worksheetId

Gets the ID of the worksheet in which the table is deleted.

Property Details

source

Gets the source of the event. See Excel.EventSource for details.

TypeScript
source: Excel.EventSource | "Local" | "Remote";

Property Value

Excel.EventSource | "Local" | "Remote"

Remarks

[ API set: ExcelApi 1.9 ]

tableId

Gets the ID of the table that is deleted.

TypeScript
tableId: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.9 ]

tableName

Gets the name of the table that is deleted.

TypeScript
tableName: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.9 ]

type

Gets the type of the event. See Excel.EventType for details.

TypeScript
type: "TableDeleted";

Property Value

"TableDeleted"

Remarks

[ API set: ExcelApi 1.9 ]

worksheetId

Gets the ID of the worksheet in which the table is deleted.

TypeScript
worksheetId: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.9 ]