internal ScheduleBoxEvent(ScheduleBoxEx objOwner, int intEventId, string strSubject, DateTime objStart, DateTime objEnd)
 {
     this.EventId = intEventId;
     this.Owner = objOwner;
     this.Subject = strSubject;
     this.End = objEnd;
     this.Start = objStart;
 }
 internal ScheduleBoxEventCollection(ScheduleBoxEx objOwner)
 {
     this.mobjOwner = objOwner;
     this.mobjEvents = new ArrayList();
 }
Exemple #3
0
 private void scheduleBox1_EventDoubleClick(object sender, ScheduleBoxEx.ScheduleBoxEventArgs e)
 {
 }
Exemple #4
0
 public bool HasShare(ScheduleBoxEx.EventSite objEvent)
 {
     return this.mobjShared.Contains(objEvent);
 }
Exemple #5
0
 public void AddShare(ScheduleBoxEx.EventSite objEvent)
 {
     this.mobjShared.Add(objEvent);
 }