Excel.ChangedEventDetail interface
Provides information about the details of a WorksheetChangedEvent or TableChangedEvent.
Remarks
[Api set: ExcelApi 1.9]
Properties
| value |
Represents the value after the change. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string. |
| value |
Represents the type of value after the change. Unlike |
| value |
Represents the type of value before the change. Unlike |
| value |
Represents the value before the change. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string. |
| value |
Represents the type of value after the change. |
| value |
Represents the type of value before the change. |
Property Details
valueAfter
Represents the value after the change. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
valueAfter: any;
Property Value
any
Remarks
[Api set: ExcelApi 1.9]
valueAsJsonAfter
Represents the type of value after the change. Unlike valueAfter, valueAsJsonAfter can represent all cell values, such as formatted number, web image, and entity data types.
valueAsJsonAfter: CellValue;
Property Value
Remarks
[Api set: ExcelApi 1.16]
valueAsJsonBefore
Represents the type of value before the change. Unlike valueBefore, valueAsJsonBefore can represent all cell values, such as formatted number, web image, and entity data types.
valueAsJsonBefore: CellValue;
Property Value
Remarks
[Api set: ExcelApi 1.16]
valueBefore
Represents the value before the change. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
valueBefore: any;
Property Value
any
Remarks
[Api set: ExcelApi 1.9]
valueTypeAfter
Represents the type of value after the change.
valueTypeAfter: Excel.RangeValueType | "Unknown" | "Empty" | "String" | "Integer" | "Double" | "Boolean" | "Error" | "RichValue";
Property Value
Excel.RangeValueType | "Unknown" | "Empty" | "String" | "Integer" | "Double" | "Boolean" | "Error" | "RichValue"
Remarks
[Api set: ExcelApi 1.9]
valueTypeBefore
Represents the type of value before the change.
valueTypeBefore: Excel.RangeValueType | "Unknown" | "Empty" | "String" | "Integer" | "Double" | "Boolean" | "Error" | "RichValue";
Property Value
Excel.RangeValueType | "Unknown" | "Empty" | "String" | "Integer" | "Double" | "Boolean" | "Error" | "RichValue"
Remarks
[Api set: ExcelApi 1.9]