ParentControlDesigner.CanParent Method

Definition

Indicates whether the specified control can be a child of the control managed by a designer.

Overloads

CanParent(Control)

Indicates whether the specified control can be a child of the control managed by this designer.

CanParent(ControlDesigner)

Indicates whether the control managed by the specified designer can be a child of the control managed by this designer.

CanParent(Control)

Indicates whether the specified control can be a child of the control managed by this designer.

public:
 virtual bool CanParent(System::Windows::Forms::Control ^ control);
public virtual bool CanParent (System.Windows.Forms.Control control);
abstract member CanParent : System.Windows.Forms.Control -> bool
override this.CanParent : System.Windows.Forms.Control -> bool
Public Overridable Function CanParent (control As Control) As Boolean

Parameters

control
Control

The Control to test.

Returns

true if the specified control can be a child of the control managed by this designer; otherwise, false.

Remarks

This method indicates whether the control managed by the designer can parent the specified ControlDesigner.

See also

Applies to

CanParent(ControlDesigner)

Indicates whether the control managed by the specified designer can be a child of the control managed by this designer.

public:
 virtual bool CanParent(System::Windows::Forms::Design::ControlDesigner ^ controlDesigner);
public virtual bool CanParent (System.Windows.Forms.Design.ControlDesigner controlDesigner);
abstract member CanParent : System.Windows.Forms.Design.ControlDesigner -> bool
override this.CanParent : System.Windows.Forms.Design.ControlDesigner -> bool
Public Overridable Function CanParent (controlDesigner As ControlDesigner) As Boolean

Parameters

controlDesigner
ControlDesigner

The designer for the control to test.

Returns

true if the control managed by the specified designer can be a child of the control managed by this designer; otherwise, false.

Remarks

This method indicates whether the control managed by this designer can parent the control of the specified ControlDesigner.

See also

Applies to