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 item is shown.
Get
VB.NET | Boolean = object.Shown As Boolean |
VB | Boolean = object.Shown As Boolean |
C#.NET | bool Boolean = object.Shown; |
VC++ | VARIANT_BOOL Boolean = object->Shown; VARIANT_BOOL Boolean = object->GetShown(); |
C | HRESULT object->get_Shown(VARIANT_BOOL* Boolean); |
Put
VB.NET | object.Shown = Boolean As Boolean |
VB | object.Shown = Boolean As Boolean |
C#.NET | bool object.Shown = Boolean; |
VC++ | VARIANT_BOOL object->Shown = Boolean; void object->PutShown(VARIANT_BOOL Boolean); |
C | HRESULT object->put_Shown(VARIANT_BOOL Boolean); |
object
Boolean
Defines whether the item is shown.
Boolean | Description |
---|---|
True | The item is shown. |
False | The item is not shown. |
The Shown property defines whether the item is shown.
An item is considered shown (or visible) if its immediate parent item and all its indirect parent items are expanded or if the item doesn't have a parent item. If a parent item is collapsed, its dependents are considered not shown.
The Shown property is used to determine if an item is currently visible, i.e., its parent items are expanded and visible themselves. The Shown property does NOT control whether the item is currently in the range of items visible to the user in the control's drop down portion. The Item.MakeVisible method can be used to display an item in the control's drop down portion.
By setting the Shown property to True, an item is made visible by expanding all its direct and indirect parent items. To display the item in the control's drop down portion, use the Item.MakeVisible method.
See Also SftBoxItem Object | Object Hierarchy