Gets or sets whether this row is visible.
This example shows how to hide the second row.
FarPoint.Web.Spread.Row myrow;
myrow=FpSpread1.ActiveSheetView.Rows[1];
myrow.Visible=false;
Dim myrow As FarPoint.Web.Spread.Row
myrow=FpSpread1.ActiveSheetView.Rows(1)
myrow.Visible=False