|
|
|
SftDirectory.AutoExpandDragDrop Property |
Defines whether folders are automatically expanded during drag & drop.
Syntax
VB.NET |
Boolean = object.AutoExpandDragDrop As Boolean |
||
VB |
Boolean = object.AutoExpandDragDrop As Boolean |
||
C#.NET |
bool Boolean = object.AutoExpandDragDrop; |
||
VC++ |
VARIANT_BOOL Boolean = object->AutoExpandDragDrop;
|
||
C |
HRESULT object->get_AutoExpandDragDrop(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.AutoExpandDragDrop : WordBool; |
||
VB.NET |
object.AutoExpandDragDrop = Boolean As Boolean |
||
VB |
object.AutoExpandDragDrop = Boolean As Boolean |
||
C#.NET |
bool object.AutoExpandDragDrop = Boolean; |
||
VC++ |
VARIANT_BOOL object->AutoExpandDragDrop = Boolean;
|
||
C |
HRESULT object->put_AutoExpandDragDrop(VARIANT_BOOL Boolean); |
||
Delphi |
object.AutoExpandDragDrop := Boolean : WordBool; |
object
A SftDirectory object.
Boolean
Defines whether folders are automatically expanded during drag & drop.
Boolean |
Description |
True |
An expandable folder is automatically expanded during a drag & drop operation, if the mouse cursor hovers over the folder for an extended period of time. |
False |
Folders are not automatically expanded. |
Comments
The AutoExpandDragDrop property defines whether folders are automatically expanded during drag & drop.
During a drag & drop operation, if the mouse cursor hovers over an expandable folder for an extended period of time, the folder can automatically be expanded based on the AutoExpandDragDrop property setting. This applies to drag & drop operations started by a SftDirectory control or any other data source. Once the drag & drop operation completes, the affected folders remain expanded.
The AutoExpandHover property defines whether folders are automatically expanded when the mouse hovers over a folder (outside of a drag & drop operation).