SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTree/NET 2.0 - Tree Control
The contents of the edit control or combo box have changed (cell editing).
Deprecated - Provided for compatibility with earlier versions only - See Cell Editing
| VB.NET | Private Sub object_CEChange(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.CEChange |
| VB | Private Sub object_CEChange(ByVal ItemIndex As Long, ByVal ColIndex As Integer, ByVal CurrString As String) |
| C#.NET | void object_CEChange(object sender, EventArgumentType e); |
| VC++ | void OnCEChangeobject(long ItemIndex, short ColIndex, _bstr_t CurrString); |
| C | HRESULT OnCEChangeobject(long ItemIndex, short ColIndex, BSTR CurrString); |
object
ItemIndex
The zero-based index of the cell being edited.
ColIndex
The column number of the cell being edited.
CurrString
The text currently displayed by the edit control or combo box used for cell editing.
Deprecated - Provided for compatibility with earlier versions only - See Cell Editing
The CEChange event occurs when the contents of the edit control or combo box have changed (cell editing).
This event is only available if the CellEventHandling property is set to True.
The tree control properties cannot be modified during this event. If the cell contents are modified, cell editing is terminated. Use the AfterEdit or PostEdit events to modify the cell contents.
See Also SftTree Object | Object Hierarchy
