Retrieves or sets a value that indicates whether the properties browser displays the
hidden members.
Type | Description | |||
Boolean | A boolean expression that indicates whether the properties browser displays the hidden members. |
Use the ShowHidden property to show hidden members. Changing the ShowHidden property at runtime invokes refreshing the control.
Here's a sample that shows how to include only hidden members:
Private Sub PropertiesList1_IncludeProperty(ByVal Property As EXPROPERTIESLISTLibCtl.IProperty, Cancel As Boolean) Cancel = Not (Property.Flags And &H40) = &H40 End Sub