The labels defines for this control.
Usage
Set_Property(OLECtrlEntID, "OLE.Labels", Labels)
Values
@FM delimited list of labels.
Default: ""
Remarks
The Labels property defines all the labels for the control. A label is simply a name and a color. Appointments can then be associated with a predefined label for convenient classification. This property is an @FM delimited array, with each field containing two values:
Position | Name | Type | Description |
---|---|---|---|
<x, 1> | Name | Text | The name of the label, e.g., "Meeting" or "Personal Time Off" |
<x, 2> | Color | Color | The label's color. |
NOTE: Define your labels before you add your appointments.
Example
// Define two labels Labels = "" Labels<-1> = "Personal":@VM:"Blue" Labels<-1> = "Urgent" :@VM:"Red" Set_Property(@Window:".OLE_CALENDAR", "OLE.Labels", Labels)