The color used to show conflict zones.
Usage
Set_Property(OLECtrlEntID, "OLE.ConflictColor", Color)
Values
Color can be any Color value.
Default: RGB{255, 0, 0}
Remarks
The ConflictColor is the color used to show overlapping appointments. This color may be customized to meet your needs, or you may set this to "None" in order to remove conflict zones completely.
Example
// Remove conflict zones Set_Property(@Window:".OLE_SCHEDULE", "OLE.ConflictColor", "None") // Set the conflict zone to green Set_Property(@Window:".OLE_SCHEDULE", "OLE.ConflictColor", "RGB{0, 255, 0}" )