Skip to main content
All docs
V26.1
  • MonthlyRule.Recurrence Property

    Gets the monthly rule’s recurrence settings.

    Namespace: DevExpress.Web.ASPxGantt

    Assembly: DevExpress.Web.ASPxGantt.v26.1.dll

    Declaration

    public Monthly Recurrence { get; }

    Property Value

    Type Description
    Monthly

    Monthly recurrence settings.

    Remarks

    In markup:

    <dx:ASPxGantt ID="Gantt" runat="server" ... /> 
        ...
        <WorkTimeRules> 
            <dx:WeeklyRule IsWorkDay="false">
                <Recurrence DayOfWeek="Saturday" />
            </dx:WeeklyRule>
            <dx:WeeklyRule IsWorkDay="false">
                <Recurrence DayOfWeek="Sunday" />
            </dx:WeeklyRule>
            ...
        </WorkTimeRules>
    </dx:ASPxGantt>
    

    In code:

    DailyRule rule1 = new DailyRule();
    rule1.WorkTimeRanges.AddRange( new List<WorkTimeRange>
    {
        new WorkTimeRange(){ Start=new TimeSpan(08,00,00), End=new TimeSpan(10,00,00)},
        new WorkTimeRange(){ Start=new TimeSpan(15,00,00), End=new TimeSpan(18,00,00)}
    });
    rule1.Recurrence.Start = new DateTime(2019, 02, 22);
    rule1.Recurrence.End = new DateTime(2019, 02, 25);
    
    ASPxGantt1.WorkTimeRules.Add(rule1);
    

    Concept

    Work Time Rules

    Online Demos

    See Also