SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Defines whether the control expands and collapses items automatically.
Get
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; VARIANT_BOOL Boolean = object->GetAutoRespond(); |
C | HRESULT object->get_AutoRespond(VARIANT_BOOL* Boolean); |
Put
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; void object->PutAutoRespond(VARIANT_BOOL Boolean); |
C | HRESULT object->put_AutoRespond(VARIANT_BOOL Boolean); |
object
Boolean
Defines whether the control expands and collapses items automatically.
Boolean | Description |
---|---|
True | The combo box control expands and collapses items automatically. Certain ItemClick or ItemDblClk events are no longer generated. |
False | The combo box control does not expand and collapse items automatically. ItemClick or ItemDblClk events can be used to implement expanding and collapsing items. |
The AutoRespond property defines whether the 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 ItemDblClk events are 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 SftBox Object | Object Hierarchy