Type | Description | |||
ExpandButtonEnum | An ExpandButtonEnum expression that indicates whether the left side button of each parent item is visible or hidden. |
The following VB sample changes the +/- button appearance:
With PropertiesList1 .HasButtons = ExpandButtonEnum.exWPlus End With
The following C++ sample changes the +/- button appearance:
m_PropertiesList.SetHasButtons( 3 /*exWPlus*/ );
The following VB.NET sample changes the +/- button appearance:
With AxPropertiesList1 .HasButtons = EXPROPERTIESLISTLib.ExpandButtonEnum.exWPlus End With
The following C# sample changes the +/- button appearance:
axPropertiesList1.HasButtons = EXPROPERTIESLISTLib.ExpandButtonEnum.exWPlus;
The following VFP sample changes the +/- button appearance:
with thisform.PropertiesList1 .HasButtons = 3 && exWPlus endwith