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 the graphic used to display a leaf item's plus/minus graphic.
Get
VB.NET | refImageObj = object.PlusMinusImageLeaf As SftPictureObject |
VB | Set refImageObj = object.PlusMinusImageLeaf As SftPictureObject |
C#.NET | SftPictureObject refImageObj = object.PlusMinusImageLeaf; |
VC++ | ISftPictureObject* refImageObj = object->PlusMinusImageLeaf; ISftPictureObject* refImageObj = object->GetPlusMinusImageLeaf(); |
C | HRESULT object->get_PlusMinusImageLeaf(ISftPictureObject** refImageObj); |
Put
VB.NET | object.PlusMinusImageLeaf = refImageObj As SftPictureObject |
VB | object.PlusMinusImageLeaf = refImageObj As SftPictureObject |
C#.NET | SftPictureObject object.PlusMinusImageLeaf = refImageObj; |
VC++ | ISftPictureObject* object->PlusMinusImageLeaf = refImageObj; void object->PutPlusMinusImageLeaf(ISftPictureObject* refImageObj); |
C | HRESULT object->put_PlusMinusImageLeaf(ISftPictureObject* refImageObj); |
object
A SftTreeItems object.
refImageObj
Defines the graphic used to display a leaf item's plus/minus graphic. Only bitmaps are supported (GDI+ images, icons, metafiles, ImageLists, etc. are not supported).
The PlusMinusImageLeaf property defines the graphic used to display a leaf item's plus/minus graphic.
The PlusMinusImageLeaf property is used to define the plus/minus graphic displayed for an item which doesn't have any dependents. All items which don't have any dependents will be displayed with this plus/minus graphic. Individual items cannot override the plus/minus graphic.
Plus/minus graphics are not shown until the properties Items.PlusMinusImageExpandable and Items.PlusMinusImageExpanded define valid graphics. The PlusMinusImageLeaf property is optional.
All graphics used in a tree control as Items.PlusMinusImageExpandable, Items.PlusMinusImageExpanded and PlusMinusImageLeaf properties at the same time must be the same size (height and width). The dimensions of the graphics are used to calculate the minimum dimension for items, so graphics used as plus/minus graphics are never clipped vertically. To change the plus/minus graphic size, the plus/minus graphics properties Items.PlusMinusImageExpandable, Items.PlusMinusImageExpanded and PlusMinusImageLeaf must be set to the value Nothing (NULL) before assigning new plus/minus graphics.
If an item is disabled (see Item.Enabled property), the plus/minus graphic is drawn in a "grayed" fashion, if it is based on a bitmap. Other image types, like color samples, .NET image objects, etc., must be explicitly replaced with a grayed image if a different rendering of a disabled image is desired.
The PlusMinusImageLeaf property can be set to the value Nothing (NULL).
See Also SftTreeItems Object | Object Hierarchy