PowerTools CalendarGrid for Windows Forms 1.0J
ShowCellToolTips プロパティ
使用例 

マウスポインタがセルの上で停止したときにツールチップを表示するかどうかを示す値を取得または設定します。
構文
Public Property ShowCellToolTips As Boolean
public bool ShowCellToolTips {get; set;}

プロパティ値

セルのツールチップを表示する場合は true。それ以外の場合は false。既定値は true です。
使用例
次のサンプルコードは、マウスを CalendarCell に合わせたときにセルのツールチップを表示するかどうかを設定する方法を示します。
private void EnableShowCellToolTip()
{
    this.gcCalendarGrid1.ShowCellToolTips = true;
}       
private void DisableShowCellToolTip()
{
    this.gcCalendarGrid1.ShowCellToolTips = false;
}
Private Sub EnableShowCellToolTip()
    Me.gcCalendarGrid1.ShowCellToolTips = True
End Sub
Private Sub DisableShowCellToolTip()
    Me.gcCalendarGrid1.ShowCellToolTips = False
End Sub
参照

GcCalendarGrid クラス
GcCalendarGrid メンバ
CalendarCellType.ToolTipText

 

 


© 2014 GrapeCity inc. All rights reserved.