PowerTools PlusPak for Windows Forms 8.0J
IsSelected プロパティ (DrawDayEventArgs)
使用例 

描画される日付が現在選択されているかどうかを表す値を取得します。
構文
Public ReadOnly Property IsSelected As Boolean
public bool IsSelected {get;}

プロパティ値

描画されている日付が現在選択されている場合は、true;そうではない場合はfalse
使用例

次のサンプルコードは、このメンバの使用方法を示します。この例では、イベントハンドラがDrawDay イベントの発生を通知します。この通知は、イベントの発生およびデバッグに役立ちます。

この例を実行するには、以下のコードをgcCalendar1のインスタンスを含むFormに追加し、イベントハンドラがDrawDay イベントに関連付けられていることを確認します。また、gcCalendar1がCalendarType.MonthDay および OwnerDrawDay モードで初期化されることを確認します。

private void gcCalendar1_DrawDayInfo(object sender, GrapeCity.Win.Calendar.DrawDayEventArgs e)
{
    System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
    messageBoxCS.AppendFormat("{0} = {1}", "BackColor", e.BackColor);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Bounds", e.Bounds);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "ClientBounds", e.ClientBounds);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Day", e.Day);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Month", e.Month);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Year", e.Year);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "IsSelected", e.IsSelected);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "IsTrailingDay", e.IsTrailingDay);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Text", e.Text);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "ForeColor", e.ForeColor);
    messageBoxCS.AppendLine();
    messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics);

    MessageBox.Show(messageBoxCS.ToString(), "DrawDay Event");
}
Private Sub gcCalendar1_DrawDayInfo(ByVal sender As Object, ByVal e As Global.GrapeCity.Win.Calendar.DrawDayEventArgs)

    Dim messageBoxVB As New System.Text.StringBuilder()

    messageBoxVB.AppendFormat("{0} = {1}", "BackColor", e.BackColor)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Bounds", e.Bounds)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "ClientBounds", e.ClientBounds)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Day", e.Day)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Month", e.Month)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Year", e.Year)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "IsSelected", e.IsSelected)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "IsTrailingDay", e.IsTrailingDay)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Text", e.Text)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "ForeColor", e.ForeColor)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics)

    MessageBox.Show(messageBoxVB.ToString(), "DrawDay Event")
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

DrawDayEventArgs クラス
DrawDayEventArgs メンバ

Send Feedback