ObjectDCL Banner

OnBeginLabelEdit Event

Description

Indicates that the user has started to edit the item label.

Parameters

nRow
Integer specifying the row.
nCol
Integer specifying the column.

AutoLISP Syntax

Each control that throws this event has its handler that takes this generic form:

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnBeginLabelEdit 
                 (nRow [as Integer] nCol [as Integer] /)
     
)

Applies For

ListView.

Example

CopyCode imageCopy Code
; React to the drag-and-drop operation ending in the control originating from
; another ObjectDCL control
(defun c:MyForm_MyControl_OnBeginLabelEdit
                 (nRow nCol /)
     (princ "OnBeginLabelEdit")
     (princ nRow)
     (princ ", ")
     (princ nCol)
     (princ "\n")
)

See Also

EditLabel, OnEditLabelItem (ListView)