GrapeCity CalendarGrid for Windows Forms 2.0J
ZoomFactor プロパティ (GcCalendarGrid)
使用例 

GcCalendarGrid のズーム倍率を取得または設定します。
構文
Public Property ZoomFactor As Single
public float ZoomFactor {get; set;}

プロパティ値

GcCalendarGrid のズーム倍率を表す System.Single 値。既定値は 1f です。
例外
例外解説
System.ArgumentOutOfRangeException 指定された値が 0.1 より小さいか、4 を超えています。
解説
AutoZoomModeAutoZoomMode.None 以外の場合、ZoomFactor は無効になります。
使用例
次のサンプルコードは、GcCalendarGrid のズーム倍率を設定する方法を示します。
private void SetZoomFactorByCode()
{
    this.gcCalendarGrid1.AutoZoomMode = CalendarGrid.AutoZoomMode.None;
    this.gcCalendarGrid1.ZoomFactor = 1.2f;
}
Private Sub SetZoomFactorByCode()
    Me.gcCalendarGrid1.AutoZoomMode = CalendarGrid.AutoZoomMode.None
    Me.gcCalendarGrid1.ZoomFactor = 1.2F
End Sub
参照

GcCalendarGrid クラス
GcCalendarGrid メンバ
AutoZoomMode プロパティ

 

 


c 2008 GrapeCity inc. All rights reserved.