PowerTools SPREAD for Windows Forms 8.0J
DefaultActiveField プロパティ


セルのデフォルトアクティブフィールドを取得または設定します。
構文
'Declaration
 
Public Property DefaultActiveField As DateFieldInfo
'使用法
 
Dim instance As GcDateTimeCellType
Dim value As DateFieldInfo
 
instance.DefaultActiveField = value
 
value = instance.DefaultActiveField
public DateFieldInfo DefaultActiveField {get; set;}

プロパティ値

デフォルトアクティブフィールドを示す GrapeCity.Win.Views.Field 値。
例外
例外説明
System.ArgumentException値が GrapeCity.Win.Spread.InputMan.CellType.Fields.DateInputField ではありません。
解説
セルが編集モードになると、デフォルトアクティブフィールドがフォーカスを取得し、その先頭にキャレットが配置されます。
次のサンプルコードは、DefaultActiveField プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
datecell.DefaultActiveField = datecell.Fields[2];
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
datecell.DefaultActiveField = datecell.Fields(2)
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell
参照

GcDateTimeCellType クラス
GcDateTimeCellType メンバ

 

 


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