DayViewBase.TimeRulers Property
Gets or sets the collection of TimeRuler objects for the current view. This is a dependency property.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v24.2.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
Property Value
Type | Description |
---|---|
DevExpress.Xpf.Scheduling.TimeRulerCollection | A |
Remarks
The TimeRulers
property allows you to specify a collection of time rulers displayed in the Day View, Work Week View, or Week View. Use the collection’s properties and methods to manage individual collection items (add or remove time rulers).
The following example demonstrates how to add a time ruler to the Day View view:
<dxsch:DayView x:Name="dayView">
<dxsch:DayView.TimeRulers>
<dxsch:TimeRulerCollection>
<dxsch:TimeRuler Caption="GMT" TimeZone="GMT Standard Time"/>
</dxsch:TimeRulerCollection>
</dxsch:DayView.TimeRulers>
</dxsch:DayView>
See Also