Outlook2013CalendarAddIn/Outlook2013TodoAddIn/Forms/FormRecurringOpen.cs

34 lines
781 B
C#
Raw Normal View History

2013-03-29 17:00:07 +01:00
using System.Windows.Forms;
namespace Outlook2013TodoAddIn.Forms
2013-03-29 17:00:07 +01:00
{
/// <summary>
/// Mimic Outlook's popup to open one instance or the whole series
/// </summary>
2013-03-29 17:00:07 +01:00
public partial class FormRecurringOpen : Form
{
#region "Properties"
2013-03-29 17:00:07 +01:00
/// <summary>
/// Whether the user wants to retrieve all instances or not
/// </summary>
2013-03-29 17:00:07 +01:00
public bool OpenRecurring
{
get { return this.rbtnAll.Checked; }
2013-03-29 17:00:07 +01:00
}
#endregion "Properties"
#region "Methods"
/// <summary>
/// Open the form
/// </summary>
2013-03-29 17:00:07 +01:00
public FormRecurringOpen()
{
InitializeComponent();
}
#endregion "Methods"
2013-03-29 17:00:07 +01:00
}
}