/// <summary> /// Initialize the dialog controls using the specified recurrence rule and recurrence date collections /// </summary> /// <param name="rr">The recurrence rules from which to get the settings</param> /// <param name="rd">The recurrence dates from which to get the settings</param> public void SetValues(RRulePropertyCollection rr, RDatePropertyCollection rd) { rRules.Clear(); rDates.Clear(); rRules.CloneRange(rr); rDates.CloneRange(rd); lbRRules.Items.Clear(); foreach (RRuleProperty r in rRules) { lbRRules.Items.Add(r.Recurrence.ToString()); } // We won't handle period RDate values lbRDates.Items.Clear(); foreach (RDateProperty rdt in rDates) { if (rdt.ValueLocation == ValLocValue.Date) { lbRDates.Items.Add(rdt.TimeZoneDateTime.ToString("d")); } else { lbRDates.Items.Add(rdt.TimeZoneDateTime.ToString("G")); } } this.SetButtonStates(); }
/// <summary> /// Update the recurrence rule and recurrence date collections with the dialog control values /// </summary> /// <param name="rr">The recurrence rules collection to update</param> /// <param name="rd">The recurrence dates collection to update</param> /// <remarks>Note that the time zone ID will need to be set in the returned RDATE property collection to /// make sure that it is consistent with the containing component.</remarks> public void GetValues(RRulePropertyCollection rr, RDatePropertyCollection rd) { rr.Clear(); rd.Clear(); rr.CloneRange(rRules); rd.CloneRange(rDates); }
/// <summary> /// Update the exception rule and exception date collections with the dialog control values /// </summary> /// <param name="er">The exception rules collection to update</param> /// <param name="ed">The exception dates collection to update</param> /// <remarks>Note that the time zone ID will need to be set in the returned EXDATE property collection to /// make sure that it is consistent with the containing component.</remarks> public void GetValues(RRulePropertyCollection er, ExDatePropertyCollection ed) { er.Clear(); ed.Clear(); er.CloneRange(rRules); // Convert the RDates to ExDate format foreach (RDateProperty rdate in rDates) { ExDateProperty edate = new ExDateProperty(); edate.ValueLocation = rdate.ValueLocation; edate.TimeZoneId = rdate.TimeZoneId; edate.TimeZoneDateTime = rdate.TimeZoneDateTime; ed.Add(edate); } }
/// <summary> /// Update the exception rule and exception date collections with the dialog control values /// </summary> /// <param name="er">The exception rules collection to update</param> /// <param name="ed">The exception dates collection to update</param> /// <remarks>Note that the time zone ID will need to be set in the returned EXDATE property collection to /// make sure that it is consistent with the containing component.</remarks> public void GetValues(RRulePropertyCollection er, ExDatePropertyCollection ed) { er.Clear(); ed.Clear(); er.CloneRange(rRules); // Convert the RDates to ExDate format foreach(RDateProperty rdate in rDates) { ExDateProperty edate = new ExDateProperty(); edate.ValueLocation = rdate.ValueLocation; edate.TimeZoneId = rdate.TimeZoneId; edate.TimeZoneDateTime = rdate.TimeZoneDateTime; ed.Add(edate); } }