Returns a recurrence on the specified time of day of the current pattern.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Recurrence At(
int hours,
int minutes = 0,
double seconds = 0
)
Public Function At (
hours As Integer,
Optional minutes As Integer = 0,
Optional seconds As Double = 0
) As Recurrence
public:
Recurrence^ At(
int hours,
int minutes = 0,
double seconds = 0
)
member At :
hours : int *
?minutes : int *
?seconds : float
(* Defaults:
let _minutes = defaultArg minutes 0
let _seconds = defaultArg seconds 0
*)
-> Recurrence
Parameters
- hours
- Type: SystemInt32
The number of hours. - minutes (Optional)
- Type: SystemInt32
(Optional.) The number of minutes. The default value is 0. - seconds (Optional)
- Type: SystemDouble
(Optional.) The number of seconds. The default value is 0.
Return Value
Type:
RecurrenceA new recurrence that is offset by the specified time span
from the start of the period.
Reference