\Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators
A PHP class representing the operators setting of PivotConfiguratorMessagesFieldMenu.
Methods
contains
The text of the "contains" filter operator.
Returns
\Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators
Parameters
$value string
Example
<?php
$operators = new \Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators();
$operators->contains('value');
?>
doesnotcontain
The text of the "Does not contain" filter operator.
Returns
\Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators
Parameters
$value string
Example
<?php
$operators = new \Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators();
$operators->doesnotcontain('value');
?>
endswith
The text of the "Ends with" filter operator.
Returns
\Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators
Parameters
$value string
Example
<?php
$operators = new \Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators();
$operators->endswith('value');
?>
eq
The text of the "equal" filter operator.
Returns
\Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators
Parameters
$value string
Example
<?php
$operators = new \Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators();
$operators->eq('value');
?>
neq
The text of the "not equal" filter operator.
Returns
\Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators
Parameters
$value string
Example
<?php
$operators = new \Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators();
$operators->neq('value');
?>
startswith
The text of the "Starts with" filter operator.
Returns
\Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators
Parameters
$value string
Example
<?php
$operators = new \Kendo\UI\PivotConfiguratorMessagesFieldMenuOperators();
$operators->startswith('value');
?>