Excel.ChangedEventDetail interface

Provides information about the details of a WorksheetChangedEvent or TableChangedEvent.

Remarks

[ API set: ExcelApi 1.9 ]

Properties

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.

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.

valueTypeAfter

Represents the type of value after the change.

valueTypeBefore

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 ]

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 ]