private void FpSpread1ChildViewCreated(object sender, FarPoint.Web.Spread.CreateChildViewEventArgs e)
{
FarPoint.Web.Spread.SheetView sv;
sv = e.SheetView;
bool b;
b = sv.IsRowExpanded(1);
Response.Write("The row is expanded is " + b.ToString());
}
Private Sub FpSpread1ChildViewCreated(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateChildViewEventArgs) Handles
FpSpread1.ChildViewCreated
Dim sv As FarPoint.Web.Spread.SheetView
sv = e.SheetView
Dim b As Boolean
b = sv.IsRowExpanded(1)
Response.Write("The row is expanded is " & b.ToString())
End Sub