You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Applies to

Combobox controls

Description

A boolean property to allow combobox lists to be dragged from that control.

Usage

enableDrag = Get_Property (objectname,"ENABLEDRAGLIST")

enableDrag = Set_Property (objectname,"ENABLEDRAGLIST", bValue)

Remarks

Values passed in Set_Property():

ValueDescription
bValueBoolean true (1) or false (0)

Returns

Values returned by Get_Property and Set_Property

ValueDescription
statethe Boolean status of the control’s drag ability.
existingStatethe Boolean status of the control’s drag ability, when Set_Property was run.

Example

 

Declare function Get_Property, Set_Property
 
* retrieve the ENABLEDRAGLIST property of the COMBO_1 control and if true set to false and vice versa.
 
cmbCtrl = @window:".COMBO_1"
 
enableDrag = Get_Property(cmbCtrl,'ENABLEDRAGROWS')
if enableDrag then newDrag = 0 else newDrag = 1
enableDrag = Set_Property(cmbCtrl,'ENABLEDRAGROWS',newDrag)
  • No labels