ScheduleRuleData.IsRecurrencePattern Property |
Gets or sets a value indicating whether the recurrence is a pattern, rather than set times.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax[DataMemberAttribute(Name = "isRecurrencePattern", EmitDefaultValue = false)]
public bool IsRecurrencePattern { get; set; }
<DataMemberAttribute(Name := "isRecurrencePattern", EmitDefaultValue := false)>
Public Property IsRecurrencePattern As Boolean
Get
Set
public:
[DataMemberAttribute(Name = L"isRecurrencePattern", EmitDefaultValue = false)]
property bool IsRecurrencePattern {
bool get ();
void set (bool value);
}
[<DataMemberAttribute(Name = "isRecurrencePattern", EmitDefaultValue = false)>]
member IsRecurrencePattern : bool with get, set
Property Value
Type:
Boolean
The value of
true if the recurrence is a pattern; otherwise,
false,
meaning the recurrence uses
Occurrences.
Remarks
When a schedule is created, this property is set to
true by default.
This property is only considered when
HasRecurrence property is set to
true.
See Also