using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsFormsCalendar
{
///
/// Represents the different kinds of selection in MonthView
///
public enum MonthViewSelection
{
///
/// User can select whatever date available to mouse reach
///
Manual,
///
/// Selection is limited to just one day
///
Day,
///
/// Selecion is limited to weekly ranges
///
WorkWeek,
///
/// Selection is limited to a full week
///
Week,
///
/// Selection is limited to a full month
///
Month
}
}