Saltar para o conteúdo principal
Version: v19

On Double Clicked

CodePode ser chamado porDefinição
134D 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 controlA 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:

PropriedadeTipoDescrição
codeinteiro longo13
descriptiontext"On Double Clicked"
objectNametextNome da área 4D View Pro
sheetNametextNome da folha do evento
rangeobjectCell range

Exemplo

 If(FORM Event.code=On Double Clicked)
$value:=VP Get value(FORM Event.range)
End if