|
|
|
SftTree.AutoRespond Property |
Defines whether the tree control expands and collapses items automatically.
Syntax
VB.NET |
Boolean = object.AutoRespond As Boolean |
||
VB |
Boolean = object.AutoRespond As Boolean |
||
C#.NET |
bool Boolean = object.AutoRespond; |
||
VC++ |
VARIANT_BOOL Boolean = object->AutoRespond;
|
||
C |
HRESULT object->get_AutoRespond(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.AutoRespond : WordBool; |
||
VB.NET |
object.AutoRespond = Boolean As Boolean |
||
VB |
object.AutoRespond = Boolean As Boolean |
||
C#.NET |
bool object.AutoRespond = Boolean; |
||
VC++ |
VARIANT_BOOL object->AutoRespond = Boolean;
|
||
C |
HRESULT object->put_AutoRespond(VARIANT_BOOL Boolean); |
||
Delphi |
object.AutoRespond := Boolean : WordBool; |
object
A SftTree object.
Boolean
Defines whether the tree control expands and collapses items automatically.
Boolean |
Description |
True |
The tree control expands and collapses items automatically. Certain ItemClick or ItemDblClick events are no longer generated. |
False |
The tree control does not expand and collapse items automatically. ItemClick or ItemDblClick events can be used to implement expanding and collapsing items. |
Comments
The AutoRespond property defines whether the tree control expands and collapses items automatically.
The AutoRespond property is used to handle the certain events automatically by expanding or collapsing an item. If the AutoRespond property is set to True, the corresponding ItemClick or ItemDblClick event is no longer generated.
If a more sophisticated response should be implemented, AutoRespond has to be set to False and all necessary event handlers have to be implemented by the application.
If AutoRespond is set to True, items are expanded or collapsed using the Item.Expand method.
See Also SftTree Object | Object Hierarchy