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