예제 #1
0
        /// <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();
        }
예제 #2
0
 /// <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);
 }
예제 #3
0
        /// <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);
            }
        }
예제 #4
0
        /// <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);
            }
        }
예제 #5
0
 /// <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);
 }