Assembly: Tab;
The ITabEditor interface contains properties that are used to work with visual cell editor.
ITabEditor
Visual cell editor is available when a cell is in editing mode. Do one of the following to switch cell to edit mode:
Double click desired cell.
Select desired cell and click F2.
Call the ITabView.EditCell method.
Cells can be edited if the ITabView.EnableEdit property is set to True. If tracing of the OnEditorTextChanged event is enabled in the table (the group of TabViewEventGroups.EditorEvents events is included into value of the EventMask property), visual editor options described by the ITabEditor interface properties can be obtained using the argument of this event.
Property name | Brief description | |
Column | The Column property returns index of the column that contains currently edited cell. | |
Row | The Row property returns index of the row that contains currently edited cell. | |
Sheet | The Sheet property returns the table that contains currently edited cell. | |
Text | The Text property returns text currently specified in cell editor. | |
XamlText | The XamlText property returns formatted text in XML format currently selected in the cell editor. |
See also: