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

Namespace:  Mindscape.WpfElements
Assembly:  Mindscape.WpfElements (in Mindscape.WpfElements.dll)
Version: 3.0.0.0 (3.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