MESCIUS SPREAD for ASP.NET 10.0J
IsPropertySet メソッド (ISheetAxisModel)

行または列のインデックス
評価するプロパティ
指定の SheetAxisModel プロパティが設定されているかどうかを判断します。
構文
'Declaration
 
Function IsPropertySet( _
   ByVal index As Integer, _
   ByVal prop As SheetAxisProperty _
) As Boolean
bool IsPropertySet( 
   int index,
   SheetAxisProperty prop
)

パラメータ

index
行または列のインデックス
prop
評価するプロパティ

戻り値の型

この行または列にプロパティが設定されていない場合はtrue、それ以外の場合はfalse
FarPoint.Web.Spread.Model.ISheetAxisModel isa;
isa = (FarPoint.Web.Spread.Model.ISheetAxisModel)FpSpread1.ActiveSheetView.ColumnAxisModel;
isa.SetVisible(0, false);
bool b = isa.IsPropertySet(0, FarPoint.Web.Spread.Model.SheetAxisProperty.Visible);
string msg = "The property is set is " + b.ToString();
Response.Write("<script language='javascript'>alert('" + msg + "')</script>");
Dim isa As FarPoint.Web.Spread.Model.ISheetAxisModel
isa = FpSpread1.ActiveSheetView.ColumnAxisModel
isa.SetVisible(0, False)
Dim b As Boolean = isa.IsPropertySet(0, FarPoint.Web.Spread.Model.SheetAxisProperty.Visible)
Dim msg As String = "The property is set is " & b.ToString()
Response.Write("<script language='javascript'>alert('" & msg & "')</script>")
参照

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

 

 


© MESCIUS inc. All rights reserved.