MESCIUS SPREAD for Windows Forms 15.0J
Tag フィールド
使用例 

アクシスモデルのTagプロパティを表します。
構文
'宣言
 
Public Shared ReadOnly Tag As SheetAxisProperty
public static readonly SheetAxisProperty Tag
使用例
次のサンプルコードは、モデルの指定したインデックスにTagプロパティが設定されているかどうかをチェックします。
FarPoint.Win.Spread.Model.DefaultSheetAxisModel defAxis = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel(20, FarPoint.Win.Spread.Model.SheetAxisOrientation.Vertical);
fpSpread1.ActiveSheet.Models.ColumnAxis = defAxis;
bool b;
defAxis.SetTag(0, "TestTag");
b = defAxis.IsPropertySet(0, FarPoint.Win.Spread.Model.SheetAxisProperty.Tag);
listBox1.Items.Add(b.ToString());
Dim defAxis As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel(20, FarPoint.Win.Spread.Model.SheetAxisOrientation.Vertical)
defAxis = FpSpread1.ActiveSheet.Models.ColumnAxis
Dim b As Boolean
defAxis.SetTag(0, "TestTag")
b = defAxis.IsPropertySet(0, FarPoint.Win.Spread.Model.SheetAxisProperty.Tag)
ListBox1.Items.Add(b.ToString())
参照

SheetAxisProperty クラス
SheetAxisProperty メンバ

 

 


© MESCIUS inc. All rights reserved.