Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NuGenCalendarSelectionArea"/> class.
 /// </summary>
 public NuGenCalendarSelectionArea(NuGenMonth month)
 {
     m_selBegin = -1;
     m_selEnd   = -1;
     m_month    = month;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NuGenCalendarSelectionArea"/> class.
 /// </summary>
 public NuGenCalendarSelectionArea(int begin, int end, NuGenMonth month)
 {
     m_selBegin = begin;
     m_selEnd   = end;
     m_month    = month;
 }