DayView.TimeScale Property
Gets or sets the time interval for the time slots in the scheduling area.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
[XtraSerializableProperty]
public TimeSpan TimeScale { get; set; }
<XtraSerializableProperty>
Public Property TimeScale As TimeSpan
Property Value
| Type | Description |
|---|---|
| TimeSpan | A TimeSpan value that specifies the time interval for the time slots. |
Remarks
Use the TimeScale property to specify the time interval, which is the amount by which the time scale displayed in the scheduling area is incremented. This property's value applies to the time rulers in the scheduling area. When a new value is set for the TimeScale property, the division of hours is changed in the time ruler to reflect the specified increment.
NOTE
Note that the TimeScale property cannot be set to any arbitrary value. When assigning a value to the TimeScale property, it is automatically calculated to equal the nearest TimeSlot.Value set for one of the time slots contained within the DayView.TimeSlots collection.
Examples
This example demonstrates how to customize the Day View within the SchedulerControl. To do this, it is necessary to modify the DayView object accessed via the SchedulerControl.DayView property.