バージョン

GetWeek(Int32,Int32) メソッド

指定された週と年の Week オブジェクトを返します。
シンタックス
'宣言
 
Public Overloads Function GetWeek( _
   ByVal week As Integer, _
   ByVal year As Integer _
) As Week
public Week GetWeek( 
   int week,
   int year
)

パラメータ

week
週番号
year
年番号

戻り値の型

指定された週と年の Week オブジェクト。
使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports System.IO
Imports System.Globalization

    Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click

        '	現在の週に対応する Week オブジェクトを取得します
        Dim week As Week = Me.ultraCalendarInfo1.GetWeek(DateTime.Today)

        '	現在の週の番号を表示します
        MessageBox.Show("The number of the current week is " + week.WeekNumber.ToString(), "GetWeek", MessageBoxButtons.OK)

    End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using System.IO;
using System.Globalization;

		private void button1_Click(object sender, System.EventArgs e)
		{

			//	現在の週に対応する Week オブジェクトを取得します
			Week week = this.ultraCalendarInfo1.GetWeek( DateTime.Today );

			//	現在の週の番号を表示します
			MessageBox.Show( "The number of the current week is " + week.WeekNumber.ToString(), "GetWeek", MessageBoxButtons.OK );

		}
参照