Controls which guides are visible during drag and drop.
Usage
Set_Property(OLECtrlEntID, "OLE.Guides", OnOffList)
Values
OnOffList has the following structure:
Pos | Name | Description |
---|---|---|
<1> | Start Time | If set to 1, a guide appears at the beginning of the appointment across the schedule. |
<2> | End Time | If set to 1, a guide appears at the end of the appointment across the schedule. |
<3> | Lead Time | If set to 1, a guide appears at the end of the appointment's lead time across the schedule. |
<4> | Trail Time | If set to 1, a guide appears at the beginning of the appointment's trail time across the schedule. |
Remarks
The Guides property establishes whether or not helpful guides appear during drag and drop. These guides are single solid lines drawn across the schedule to make it easier to line an appointment up with other lines. You can show any of these lines or none of them, which is the default.
Example
// Show start and eng guides only Set_Property(@Window:".OLE_SCHEDULE", "OLE.Guides", 1:@FM:1:@FM:0:@FM:0) // Show lead and trail guides only Set_Property(@Window:".OLE_SCHEDULE", "OLE.Guides", 0:@FM:0:@FM:1:@FM:1)