Hello Renjith,
You may use the NonEmptyRowCount property to get the number of non empty rows in the Spread. You may use following code to use it:
MessageBox.Show(FpSpread1.ActiveSheetView.NonEmptyRowCount);
Similarly, you may get the Text and Value of the cell using following code:
FpSpread1.ActiveSheetView.Cells(RowIndex,ColIndex).Value
FpSpread1.ActiveSheetView.Cells(RowIndex,ColIndex).Text
You may also use the GetText and GetValue methods
FpSpread1.ActiveSheetView.GetValue(RowIndex,ColIndex)
FpSpread1.ActiveSheetView.GetText(RowIndex,ColIndex)
Regards,
Scott S.
Product Manager, Spread ASP.NET
GrapeCity FarPoint