Type | Description |
Use the EditOpen event to notify your application that the cell's editor is shown and ready to edit the cell. The Editing specifies the window's handle of the built-in editor while the control is running in edit mode. The EditingText property returns the caption being shown on the editor while the control runs in edit mode.
The edit events are fired in the following order:
Edit event. Prevents editing cells, before showing the cell's editor.
EditOpen event. The edit operation started, the cell's editor is shown. The Editing property gives the window's handle of the built-in editor being started.
Change event. The Change event is fired only if the user types ENTER key, or the user selects a new value from a predefined data list.
EditClose event. The cell's editor is hidden and closed.
private void EditOpen(object sender) { } Private Sub EditOpen(ByVal sender As System.Object) Handles EditOpen End Sub |
private void EditOpen(object sender, EventArgs e) { } void OnEditOpen() { } void __fastcall EditOpen(TObject *Sender) { } procedure EditOpen(ASender: TObject; ); begin end; procedure EditOpen(sender: System.Object; e: System.EventArgs); begin end; begin event EditOpen() end event EditOpen Private Sub EditOpen(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EditOpen End Sub Private Sub EditOpen() End Sub Private Sub EditOpen() End Sub LPARAMETERS nop PROCEDURE OnEditOpen(oG2antt) RETURN |
<SCRIPT EVENT="EditOpen()" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function EditOpen() End Function </SCRIPT> Procedure OnComEditOpen Forward Send OnComEditOpen End_Procedure METHOD OCX_EditOpen() CLASS MainDialog RETURN NIL void onEvent_EditOpen() { } function EditOpen as v () end function function nativeObject_EditOpen() return |