Default draggable setting for new items.
Usage
Set_Property(OLECtrlEntID, "OLE.DefDraggable", OptionValue)
Values
OptionValue can be set to one of the following valid options:
Value | Abbr. | Description |
---|---|---|
Default | D | Use the DragCondition property to decide |
Always | A | The new item can be dragged |
Never | N | The new item cannot be dragged |
Default: Default
Remarks
The DefDraggable property establishes the default draggable setting for new items. Setting this property will not change existing items. Instead, newly added items will take on the setting established in this property. See the ItemDraggable property for details.
For more information on how default properties can make you more efficient, see the Default Properties article.
Example
// Make all new items draggable Set_Property(@Window:".OLE_TREE", "OLE.DefDraggable", "Always")