Determines if the VisualStylesProvider can offer extender properties to the specified target component.

Namespace: System.Extensions.Windows.Forms
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
public bool CanExtend(
	Object extendee
)
Visual Basic
Public Function CanExtend ( 
	extendee As Object
) As Boolean
Visual C++
public:
virtual bool CanExtend(
	Object^ extendee
) sealed
F#
abstract CanExtend : 
        extendee : Object -> bool 
override CanExtend : 
        extendee : Object -> bool 

Parameters

extendee
Type: System..::..Object
The target object to add properties to.

Return Value

Type: Boolean
true if the VisualStylesProvider can offer one or more extender properties; false otherwise.

Implements

IExtenderProvider..::..CanExtend(Object)

See Also