\Kendo\UI\ImageEditorSaveAs

A PHP class representing the saveAs setting of ImageEditor.

Methods

fileName

Sets the filename of the saved file.

Returns

\Kendo\UI\ImageEditorSaveAs

Parameters

$value string

Example

<?php
$saveAs = new \Kendo\UI\ImageEditorSaveAs();
$saveAs->fileName('value');
?>

forceProxy

If set to true, the content will be forwarded to proxyURL even if the browser supports saving files locally.

Returns

\Kendo\UI\ImageEditorSaveAs

Parameters

$value boolean

Example

<?php
$saveAs = new \Kendo\UI\ImageEditorSaveAs();
$saveAs->forceProxy(true);
?>

proxyTarget

A name or keyword indicating where to display the document returned from the proxy.

Returns

\Kendo\UI\ImageEditorSaveAs

Parameters

$value string

Example

<?php
$saveAs = new \Kendo\UI\ImageEditorSaveAs();
$saveAs->proxyTarget('value');
?>

proxyURL

The URL of the server side proxy which will stream the file to the end user. A proxy will be used when the browser isn't capable of saving files locally. Such browsers are IE version 9 and lower and Safari.

Returns

\Kendo\UI\ImageEditorSaveAs

Parameters

$value string

Example

<?php
$saveAs = new \Kendo\UI\ImageEditorSaveAs();
$saveAs->proxyURL('value');
?>
In this article
Not finding the help you need?