property PropertiesList.ShowReadOnly as Boolean

Retrieves or sets a value that indicates whether the properties browser displays the read only properties.

TypeDescription
Boolean A boolean expression that indicates whether the properties browser displays the read only properties.

Use the ShowReadOnly property to exclude properties that read only. Use the ReadOnly property to make the control editable. A read only member appears as grayed. Changing the ShowPropertyPages 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