Back to Devexpress

Monthly.Day Property

wpf-devexpress-dot-xpf-dot-gantt-dot-monthly.md

latest1.6 KB
Original Source

Monthly.Day Property

Gets or sets a day of month when the rule is applied. This is a dependency property.

Namespace : DevExpress.Xpf.Gantt

Assembly : DevExpress.Xpf.Gantt.v25.2.dll

NuGet Package : DevExpress.Wpf.Gantt

Declaration

csharp
public int Day { get; set; }
vb
Public Property Day As Integer

Property Value

TypeDescription
Int32

A day number.

|

Remarks

Use the Day property to specify a day of month when the rule is applied.

Example

xaml
<dxgn:GanttControl ItemsSource="{Binding Tasks}">
    <dxgn:GanttControl.View>
        <dxgn:GanttView ...
            NonworkingDayDisplayMode="Show"
            NonworkingTimeDisplayMode="Show">
            <dxgn:GanttView.WorkingTimeRules>
                <!-- The rule applies to the first day of each month (January, 1; February, 1; etc.) -->
                <dxgn:WorkingTimeRule Recurrence="{dxgn:Monthly Day=1}" WorkingTime="9:0:0-13:0:0, 14:0:0-17:0:0" />
            </dxgn:GanttView.WorkingTimeRules>
        </dxgn:GanttView>
    </dxgn:GanttControl.View>
</dxgn:GanttControl>

See Also

Monthly Class

Monthly Members

DevExpress.Xpf.Gantt Namespace