'宣言 Public Enum CalendarComboState Inherits System.Enum
public enum CalendarComboState : System.Enum
メンバ | 解説 |
---|---|
ActiveDay | アクティブ日があります。 |
ActiveDayIsFirstVisibleDayInMonth | アクティブな日は、月の最初の表示日です。 |
ActiveDayIsLastVisibleDayInMonth | アクティブな日は、月の最後の表示日です。 |
AutoCloseUp | ドロップダウンは自動的に閉じません。 |
DroppedDown | Calendarが現在ドロップダウンされています。 |
EditReadOnly | 編集部分は参照のみです。 |
MonthPopupDisplayed | Monthポップアップウィンドウが現在表示されています。 |
VisibleMonths | 表示月が少なくとも1月表示されています。 |
Imports Infragistics.Win Imports Infragistics.Win.UltraWinSchedule Imports Infragistics.Win.UltraWinSchedule.CalendarCombo Private Sub GetCurrentState() Dim info As String = "The control is in the following state(s):" + vbCrLf + vbCrLf ' The CurrentState property is expressed in terms of bit flags, ' since the control can be in more than one distinct state at any ' given time. We will strip each bit that is set until we are left with ' no set bits, recording the corresponding state value with each iteration. Dim state As Long = Me.ultraCalendarCombo1.CurrentState Dim mask As Long = 1 While (state > 0) ' See if the bit that corresponds to the current value of the mask ' is set if it is, get the name of the enumeration for that state If ((state And mask) <> 0) Then Dim comboState As CalendarComboState = mask info += comboState.ToString() + vbCrLf ' Strip out the bit so we know when to exit this while loop state = state And (Not mask) End If ' Multiply the mask by 2 to set it to the next power of 2, ' effectively shifting the bit position we are checking one ' place to the right mask *= 2 End While ' Display the state information in a message box MessageBox.Show(info, "GetCurrentState", MessageBoxButtons.OK) End Sub
using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; using Infragistics.Win.UltraWinSchedule.CalendarCombo; private void GetCurrentState() { string info = "The control is in the following state(s):" + "\n" + "\n"; // The CurrentState property is expressed in terms of bit flags, // since the control can be in more than one distinct state at any // given time. We will strip each bit that is set until we are left with // no set bits, recording the corresponding state value with each iteration. long state = (long)this.ultraCalendarCombo1.CurrentState; long mask = 1; while ( state > 0 ) { // See if the bit that corresponds to the current value of the mask // is set; if it is, get the name of the enumeration for that state if ( ( state & mask ) != 0 ) { CalendarComboState comboState = (CalendarComboState)( mask ); info += comboState.ToString() + "\n"; // Strip out the bit so we know when to exit this while loop state &= ~mask; } // Multiply the mask by 2 to set it to the next power of 2, // effectively shifting the bit position we are checking one // place to the right mask *= 2; } // Display the state information in a message box MessageBox.Show( info, "GetCurrentState", MessageBoxButtons.OK ); }