'Declaration Public ReadOnly Property Parent As Object
'Usage Dim instance As Cells Dim value As Object value = instance.Parent
public object Parent {get;}
This property is available at run time only.
The object that can be the parent can be:
MessageBox.Show(fpSpread1.ActiveSheet.Cells[0, 0].Parent.ToString());
MessageBox.Show(fpSpread1.ActiveSheet.Cells(0, 0).Parent.ToString())
Cells Class Cells Members