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