\Kendo\UI\DockManagerRootPanePaneUnpinnable
A PHP class representing the unpinnable setting of DockManagerRootPanePane.
Methods
unpinned
Specifies if the pane is unpinned. Available only for panes of type content.
Returns
\Kendo\UI\DockManagerRootPanePaneUnpinnable
Parameters
$value boolean
Example
<?php
$unpinnable = new \Kendo\UI\DockManagerRootPanePaneUnpinnable();
$unpinnable->unpinned(true);
?>
unpinnedSize
The size of the pane when unpinned. If not specified the pinned size is used. Available only for panes of type content.
Returns
\Kendo\UI\DockManagerRootPanePaneUnpinnable
Parameters
$value string
Example
<?php
$unpinnable = new \Kendo\UI\DockManagerRootPanePaneUnpinnable();
$unpinnable->unpinnedSize('value');
?>