The number of minutes per interval.

Usage

Set_Property(OLECtrlEntID, "OLE.Interval", Value)

Values

Value can be any positive or negative whole number:

Default: 30

Remarks

The Interval property can be used to customize the number of minutes per interval. Think of an interval like a row in a table. If your interval is 30 minutes, then each hour is two rows. If your interval is 15 minutes, then each hour is four rows.

When setting this property, you must specify the number of minutes per interval. This value cannot be zero or negative, and it cannot exceed 60. Furthermore, the value must divide evenly into 60. For example, 15 is valid, but 14 or 16 is not. Invalid values are ignored thus leaving the property at it's previous value.

Example

// Use 10 minutes per interval 
Set_Property(@Window:".OLE_SCHEDULE", "OLE.Interval", 10) 

// Use 15 minutes per interval 
Set_Property(@Window:".OLE_SCHEDULE", "OLE.Interval", 15) 

// Use 30 minutes per interval 
Set_Property(@Window:".OLE_SCHEDULE", "OLE.Interval", 30)

See Also

IntervalSize

  • No labels