Gets the collection of columns (Columns object) containing this column.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property Parent As Columns |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Column
Dim value As Columns
value = instance.Parent |
Property Value
Columns object containing parent column collection
Remarks
Example
This example illustrates the use of this member by returning the parent of the column.
C# | Copy Code |
---|
FarPoint.Win.Spread.Column col;
col = fpSpread1.ActiveSheet.Columns[0];
listBox1.Items.Add(col.Parent.ToString()); |
Visual Basic | Copy Code |
---|
Dim col As FarPoint.Win.Spread.Column
col = FpSpread1.ActiveSheet.Columns(0)
ListBox1.Items.Add(col.Parent.ToString()) |
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