property PropertiesList.FireIncludeProperty as Boolean

Retrieves or sets a value that indicates whether the IncludeProperty event is fired.

TypeDescription
Boolean A Boolean expression that indicates whether the IncludeProperty event is fired.

By default, the FireIncludeProperty is True. Use the FireIncludeProperty to allow the control filtering properties using the IncludeProperty event. If the FireIncludeProperty is False, the control doesn't fire the IncludeProperty event. Use the FireIncludeProperty property on False, when your properties browser doesn't require custom filtering, to increase the speed of loading objects into the browser. 

The following sample excludes the "hPal" variable of a Picture property:

Private Sub PropertiesList1_IncludeProperty(ByVal Property As EXPROPERTIESLISTLibCtl.IProperty, Cancel As Boolean)
    If Property.Variable = True Then
        If Property.Name = "hPal" Then
            Cancel = True
        End If
    End If
End Sub