Excel.ChangedEventDetail interface
Provides information about the details of a WorksheetChangedEvent
or TableChangedEvent
.
Remarks
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
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
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
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
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
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
Office Add-ins