MESCIUS SPREAD for ASP.NET 10.0J
IsRowExpanded メソッド

行インデックス
階層表示内で行が展開されているかどうかを取得します。
構文
'Declaration
 
Public Overridable Function IsRowExpanded( _
   ByVal row As Integer _
) As Boolean
public virtual bool IsRowExpanded( 
   int row
)

パラメータ

row
行インデックス

戻り値の型

行が展開されている場合はtrue、それ以外の場合はfalse
例外
例外説明
System.ArgumentOutOfRangeException指定された行が範囲外です。0から行数までの値を指定する必要があります。
この例では、指定した行が展開されているかどうかを返します。
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
参照

SheetView クラス
SheetView メンバ

開発者の手引き

階層表示

 

 


© MESCIUS inc. All rights reserved.