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 an item's enabled/disabled status.
Deprecated - Provided for compatibility with earlier versions only - Use Item.Enabled instead
Get
VB.NET | Boolean = object.get_ItemStatus(ByVal ItemIndex As Integer) As Boolean |
VB | Boolean = object.ItemStatus(ByVal ItemIndex As Long) As Boolean |
C#.NET | bool Boolean = object.get_ItemStatus(int ItemIndex); |
VC++ | VARIANT_BOOL Boolean = object->ItemStatus[long ItemIndex]; VARIANT_BOOL Boolean = object->GetItemStatus(long ItemIndex); |
C | HRESULT object->get_ItemStatus(long ItemIndex, VARIANT_BOOL* Boolean); |
Put
VB.NET | object.set_ItemStatus(ByVal ItemIndex As Integer, ByVal Boolean As Boolean) |
VB | object.ItemStatus(ByVal ItemIndex As Long) = Boolean As Boolean |
C#.NET | void object.set_ItemStatus(int ItemIndex, bool Boolean); |
VC++ | VARIANT_BOOL object->ItemStatus[long ItemIndex] = Boolean; void object->PutItemStatus(long ItemIndex, VARIANT_BOOL Boolean); |
C | HRESULT object->put_ItemStatus(long ItemIndex, VARIANT_BOOL Boolean); |
object
ItemIndex
The zero-based item index.
Boolean
Defines an item's enabled/disabled status.
Boolean | Description |
---|---|
True | The item is enabled. |
False | The item is disabled. It is drawn in a "grayed" manner indicating its status. Except for the visual difference, a disabled item is treated exactly like an enabled item. It is up to the application to implement a different behavior if an item is disabled. |
Deprecated - Provided for compatibility with earlier versions only - Use Item.Enabled instead
The ItemStatus property defines an item's enabled/disabled status.
See Also SftTree Object | Object Hierarchy