バージョン

GetMonth(Int32,Int32) メソッド

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

パラメータ

month
1-12の月番号
year
年番号

戻り値の型

month によって指定された月と year によって指定された年に対応する Month オブジェクト。
使用例
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

        '	現在の月に対応する Month オブジェクトを取得します
        Dim month As Month
        month = Me.ultraCalendarInfo1.GetMonth(DateTime.Today)

        '	月の日数を表示します
        MessageBox.Show("The number of days in the current month is " + month.DaysInMonth.ToString(), "GetMonth", 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)
		{

			//	現在の月に対応する Month オブジェクトを取得します
			Month month = null;
			month = this.ultraCalendarInfo1.GetMonth( DateTime.Today );

			//	月の日数を表示します
			MessageBox.Show( "The number of days in the current month is " + month.DaysInMonth.ToString(), "GetMonth", MessageBoxButtons.OK );

		}
参照