Returns a recurrence on the specified month of the current pattern.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Recurrence Month(
int month,
bool fromEnd = false
)
Public Function Month (
month As Integer,
Optional fromEnd As Boolean = false
) As Recurrence
public:
Recurrence^ Month(
int month,
bool fromEnd = false
)
member Month :
month : int *
?fromEnd : bool
(* Defaults:
let _fromEnd = defaultArg fromEnd false
*)
-> Recurrence
Parameters
- month
- Type: SystemInt32
The 1-based number of the month. - fromEnd (Optional)
- Type: SystemBoolean
Indicates whether the number of months should be counted
from the end of the period.
Return Value
Type:
RecurrenceA new recurrence that is offset by
month months
from the start of the period.
month is a month number,
not an offset. The first month has
month equal to 1, not 0.
Reference