Spread Windows Forms 6.0 Product Documentation
Parent Property
See Also  Example Support Options
FarPoint.Win Assembly > FarPoint.Win Namespace > ElementControl Class : Parent Property


Glossary Item Box

Gets or sets the parent of the control.

Syntax

Visual Basic (Declaration) 
Public Overridable Shadows Property Parent As Control
Visual Basic (Usage)Copy Code
Dim instance As ElementControl
Dim value As Control
 
instance.Parent = value
 
value = instance.Parent
C# 
public virtual new Control Parent {get; set;}

Property Value

Control object containing the parent of this control

Remarks

This property is available at run time only.

For more information, see the Parent property in the Microsoft .NET Framework Reference.

Example

C#Copy Code
// Change the parent of the controls
private void button1_Click(object sender, System.EventArgs e)
{
    control.Parent = groupBox1;
    control2.Parent = this; 
}
Visual BasicCopy Code
'Change the parent of the controls
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    control.Parent = Me
    control2.Parent = GroupBox1
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.