![]() Gravitybox Schedule.NET
1998-2005 Gravitybox Software LLC
Page 84 of 90
In many cases, conflicting appointments are a part of life. GbSchedule.Net allows you to
display conflicts in three different ways. (1) They can be overlapped. Essentially there is
no processing since an appointment merely overlaps others that conflict. (2) They can
be displayed side-by-side. This ensures that all appointments are seen. Each
appointment is drawn with a smaller width to allow other conflicting appointments to be
seen. (3) An advanced display is staggering. Appointments are slightly overlapped but
their widths as slightly smaller as well. This looks much like the iCal application from
Apple.
Schedule1.ConflictDisplay = _
Gravitybox.Controls.Schedule.ConflictDisplayConstants.Overlap
Schedule1.ConflictDisplay = _
Gravitybox.Controls.Schedule.ConflictDisplayConstants.SideBySide
Schedule1.ConflictDisplay = _
Gravitybox.Controls.Schedule.ConflictDisplayConstants.Stagger
How do I print or preview a schedule?
A schedule may be printed as easily as calling the GoPrint method. However this
method is overloaded and may take a PrintDialogSettings object to customize the area
of print. Previewing the schedule works the same way. It is overloaded in the exact
same way as the GoPrint method.
Schedule1.GoPrint()
Schedule1.GoPreview()
|