CellEndEditEventArgs Class
Provides data for the cellEndEdit event.
#Declaration
TypeScript
class CellEndEditEventArgs extends CancelEventArgs
#Inheritance
EventArgs
CancelEventArgs
CellEndEditEventArgs
#Properties
#columnIndex Property
Gets the active cell’s column index.
#Declaration
TypeScript
columnIndex: number
#Property Value
Type | Description |
---|---|
number | The zero-based column index. |
#editorText Property
The text stored in the active cell’s editor.
#Declaration
TypeScript
editorText: string
#Property Value
Type | Description |
---|---|
string | The editor’s text. |
#formula Property
Gets the active cell’s formula.
#Declaration
TypeScript
formula: string
#Property Value
Type | Description |
---|---|
string | The formula. |
#rowIndex Property
Gets the active cell’s row index.
#Declaration
TypeScript
rowIndex: number
#Property Value
Type | Description |
---|---|
number | The zero-based row index. |
#sheetName Property
Gets the current worksheet’s name.
#Declaration
TypeScript
sheetName: string
#Property Value
Type | Description |
---|---|
string | The current worksheet’s name. |
#value Property
Gets the active cell’s current value.
#Declaration
TypeScript
value: string
#Property Value
Type | Description |
---|---|
string | The cell’s value. |