Spread for ASP.NET 11 Product Documentation
Parent Property (Cells)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Cells Class : Parent Property
Gets the parent object that contains this collection of cells.
Syntax
'Declaration
 
Public ReadOnly Property Parent As Object
'Usage
 
Dim instance As Cells
Dim value As Object
 
value = instance.Parent
public object Parent {get;}

Property Value

Object containing the parent
Example
This example returns the parent of the cell.
FarPoint.Web.Spread.Cell c;
c = FpSpread1.ActiveSheetView.Cells[0, 0]; 
Response.Write(c.Parent.ToString());
Dim c As FarPoint.Web.Spread.Cell
c = FpSpread1.ActiveSheetView.Cells(0, 0)  
Response.Write(c.Parent.ToString())
See Also

Reference

Cells Class
Cells Members