PowerTools PlusPak for Windows Forms 8.0J
DayOfWeekFromPoint(Point) メソッド
使用例 

日の座標
座標が示す位置に対応する曜日を取得します。
構文
Public Overloads Function DayOfWeekFromPoint( _
   ByVal point As Point _
) As DayOfWeek
public DayOfWeek DayOfWeekFromPoint( 
   Point point
)

パラメータ

point
日の座標

戻り値の型

指定した位置に対応する曜日
使用例
次のサンプルコードは、マウスポインタ位置の日付と曜日を取得する方法を示します。
Imports GrapeCity.Win.Calendar

Private Sub GcCalendar1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Calendar1.MouseMove
    ' マウスポインタ位置の日付を取得します。
    Dim aDate As DateTimeEx = GcCalendar1.DateFromPoint(e.X, e.Y)
    if Not(aDate Is Nothing) Then
        Me.Text = aDate.ToLongDateString()
        ' 日付の曜日を取得します。
        Me.Text = GcCalendar1.DayOfWeekFromPoint(e.X, e.Y).ToString()
    End If
End Sub
using GrapeCity.Win.Calendar;

private void gcCalendar1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
{
    // マウスポインタ位置の日付を取得します。
    DateTimeEx aDate = gcCalendar1.DateFromPoint(e.X, e.Y);
    if (aDate != null)
    {
        this.Text = aDate.ToLongDateString();
        // 日付の曜日を取得します。
        this.Text = gcCalendar1.DayOfWeekFromPoint(e.X, e.Y).ToString();
    }
}
プラットフォーム

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

参照

GcCalendar クラス
GcCalendar メンバ
オーバーロード一覧

Send Feedback