Initial commit
Added all files from https://sourceforge.net/p/winformscalenda/code/HEAD/tarball
This commit is contained in:
38
WindowsFormsCalendar/Enums/MonthViewSelection.cs
Normal file
38
WindowsFormsCalendar/Enums/MonthViewSelection.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WindowsFormsCalendar
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the different kinds of selection in MonthView
|
||||
/// </summary>
|
||||
public enum MonthViewSelection
|
||||
{
|
||||
/// <summary>
|
||||
/// User can select whatever date available to mouse reach
|
||||
/// </summary>
|
||||
Manual,
|
||||
|
||||
/// <summary>
|
||||
/// Selection is limited to just one day
|
||||
/// </summary>
|
||||
Day,
|
||||
|
||||
/// <summary>
|
||||
/// Selecion is limited to <see cref="DayOfWeek"/> weekly ranges
|
||||
/// </summary>
|
||||
WorkWeek,
|
||||
|
||||
/// <summary>
|
||||
/// Selection is limited to a full week
|
||||
/// </summary>
|
||||
Week,
|
||||
|
||||
/// <summary>
|
||||
/// Selection is limited to a full month
|
||||
/// </summary>
|
||||
Month
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user