Example #1
0
 public void AddRange(CustomEventList events)
 {
     foreach (CustomEvent customEvent in events)
     {
         this.Add(customEvent);
     }
 }
Example #2
0
        public IEnumerable SelectMethodHandler()
        {
            CustomEventList result = new CustomEventList();

            result.AddRange(Events);
            return(result);
        }
Example #3
0
 public CustomEventDataSource(CustomEventList events)
 {
     if (events == null)
     {
         DevExpress.XtraScheduler.Native.Exceptions.ThrowArgumentNullException("events");
     }
     this.events = events;
 }