PowerTools SPREAD for ASP.NET 8.0J
GetResizable メソッド (ISheetAxisModel)

行または列のインデックス
指定した行または列のサイズをユーザーが変更できるかどうかを取得します。
構文
'Declaration
 
Function GetResizable( _
   ByVal index As Integer _
) As Boolean
bool GetResizable( 
   int index
)

パラメータ

index
行または列のインデックス

戻り値の型

行または列がユーザーによってサイズを変更できる場合はtrue、それ以外の場合はfalse
次のサンプルコードは、指定した列のサイズを変更できるかどうかを設定して返します。
FarPoint.Web.Spread.Model.ISheetAxisModel isa;
isa = (FarPoint.Web.Spread.Model.ISheetAxisModel)FpSpread1.ActiveSheetView.ColumnAxisModel;
isa.SetResizable(2, false);
bool b = isa.GetResizable(2);
string msg = "The column can be moved is " + b.ToString();
Response.Write("<script language='javascript'>alert('" + msg + "')</script>");
Dim isa As FarPoint.Web.Spread.Model.ISheetAxisModel
isa = FpSpread1.ActiveSheetView.ColumnAxisModel
isa.SetResizable(2, False)
Dim b As Boolean = isa.GetResizable(2)
Dim msg As String = "The column can be moved is " & b.ToString()
Response.Write("<script language='javascript'>alert('" & msg & "')</script>")
参照

ISheetAxisModel インタフェース
ISheetAxisModel メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.