On Double Clicked
Code | Pode ser chamado por | Definição |
---|---|---|
13 | 4D View Pro Area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Dropdown list - Form - Hierarchical List - Input - List Box - List Box Column - Picture Button - Picture Pop up menu - Plug-in Area - Progress Indicators - Radio Button - Ruler - Spinner - Splitter - Stepper - Tab control | A double click occurred on an object |
Descrição
The On Double Clicked
event is generated when the user double-clicks on an object. The maximum length of time separating a double-click is defined in the system preferences.
If the On Clicked
or On Double Clicked
onDoubleClicked.md object event property is selected for an object, you can detect and handle the clicks within or on the object, using the FORM event
command that returns On Clicked
or On Double Clicked
, depending on the case.
If both events are selected for an object, the On Clicked
and then the On Double Clicked
events will be generated when the user double-clicks the object.
4D View Pro
Este evento é gerado quando o utilizador clica duas vezes em qualquer lugar num documento 4D View Pro. On this context, the event object returned by the FORM Event
command contains:
Propriedade | Tipo | Descrição |
---|---|---|
code | inteiro longo | 13 |
description | text | "On Double Clicked" |
objectName | text | Nome da área 4D View Pro |
sheetName | text | Nome da folha do evento |
range | object | Cell range |
Exemplo
If(FORM Event.code=On Double Clicked)
$value:=VP Get value(FORM Event.range)
End if