![]() ![]() ![]() ![]() Gravitybox Schedule Primer
Page 185
1998-2004 Gravitybox Software LLC
Note: This property has no meaning if the ViewMode
property is set to exclude days.
HiliteBarBottom
Property HiliteBarBottom() As OLE_COLOR
An appointment is highlighted when the mouse moves
over it. The highlight is a bar drawn on the top and bottom
(or left/right) of the appointment. This property
corresponds to the top (or left) bar that is displayed on a
highlighted appointment.
HiliteBarTop
Property HiliteBarTop() As OLE_COLOR
An appointment is highlighted when the mouse moves
over it. The highlight is a bar drawn on the top and bottom
(or left/right) of the appointment. This property
corresponds to the bottom (or right) bar that is displayed
on a highlighted appointment.
IconAlign
Property IconAlign() As AlignIconConstants
This property determines whether appointment icons are
displayed to the top or left of the appointment text. Each
appointment has an Icons collection that may be used to
display custom icons on an appointment. These icons
may be displayed on the top or left of the text.
ImageList
Property ImageList() As Object
This is a standard ImageList form the Microsoft common
controls. This is used as a repository for images that are
to be used on appointments. The proper format for
pictures is 16x16 with no mask color. Images of this
format will show up on the appointment the best. Each
image in the ImageList needs to have a unique key
specified. This key is used to display the appropriate
image on the appointment.
Dim oAppt As CScheduleEl
Set oAppt =
F.Schedule1.ScheduleItems.Add("", _
#1/1/2002#, 0, #8:00:00 AM#, _
150, "Appt 1")
Call oAppt.Icons.Add("caution")
|