ParentControlDesigner.CanParent Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
- ControlDesigner
- ComponentDesigner
- IDesigner
- IDesignerFilter
- DesignerAttribute
- Extending Design-Time Support
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
- ControlDesigner
- ComponentDesigner
- IDesigner
- IDesignerFilter
- DesignerAttribute
- Extending Design-Time Support