\Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions
A PHP class representing the offsetPositions setting of SchedulerMessagesRecurrenceEditor.
Methods
first
The text similar to "first" displayed in the scheduler recurrence editor.
Returns
\Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions
Parameters
$value string
Example
<?php
$offsetPositions = new \Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions();
$offsetPositions->first('value');
?>
fourth
The text similar to "fourth" displayed in the scheduler recurrence editor.
Returns
\Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions
Parameters
$value string
Example
<?php
$offsetPositions = new \Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions();
$offsetPositions->fourth('value');
?>
last
The text similar to "last" displayed in the scheduler recurrence editor.
Returns
\Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions
Parameters
$value string
Example
<?php
$offsetPositions = new \Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions();
$offsetPositions->last('value');
?>
second
The text similar to "second" displayed in the scheduler recurrence editor.
Returns
\Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions
Parameters
$value string
Example
<?php
$offsetPositions = new \Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions();
$offsetPositions->second('value');
?>
third
The text similar to "third" displayed in the scheduler recurrence editor.
Returns
\Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions
Parameters
$value string
Example
<?php
$offsetPositions = new \Kendo\UI\SchedulerMessagesRecurrenceEditorOffsetPositions();
$offsetPositions->third('value');
?>