Determines whether a member is browsable (i.e. does not have a BrowsableAttribute with the Browsable property set to false).

Namespace:  Mindscape.WpfPropertyGrid
Assembly:  Mindscape.WpfPropertyGrid (in Mindscape.WpfPropertyGrid)
Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static bool IsBrowsable(
	ICustomAttributeProvider member
)
Visual Basic (Declaration)
Public Shared Function IsBrowsable ( _
	member As ICustomAttributeProvider _
) As Boolean

Parameters

member
Type: System.Reflection..::.ICustomAttributeProvider
The member to check.

Return Value

true if the member is browsable (does not have the BrowsableAttribute, or has BrowsableAttribute.Yes); false if the member is not browsable.

See Also