public bool EnableScrollAnimation {get; set;}
'Declaration
Public Property EnableScrollAnimation As Boolean
'使用法
Dim instance As DropDownCalendar
Dim value As Boolean
instance.EnableScrollAnimation = value
value = instance.EnableScrollAnimation
プロパティ値
System.Boolean値。ドロップダウンカレンダーをスクロールまたはズームするときにアニメーションを実行する場合は
true。それ以外の場合は
false。
デフォルト値は
trueです。
次のサンプルコードは、EnableScrollAnimationプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType gcDateTimeCell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
gcDateTimeCell1.DropDownCalendar.EnableScrollAnimation = true;
fpSpread1.Sheets[0].Cells[1, 1].CellType = gcDateTimeCell1;
Dim gcDateTimeCell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
gcDateTimeCell1.DropDownCalendar.EnableScrollAnimation = True
FpSpread1.Sheets(0).Cells(1, 1).CellType = gcDateTimeCell1