\Kendo\UI\SpreadsheetSheetDrawing

A PHP class representing the drawing setting of SpreadsheetSheetDrawings.

Methods

height

The drawing's height in pixels.

Returns

\Kendo\UI\SpreadsheetSheetDrawing

Parameters

$value float

Example

<?php
$drawing = new \Kendo\UI\SpreadsheetSheetDrawing();
$drawing->height(1);
?>

image

The ID of the image to display.

Returns

\Kendo\UI\SpreadsheetSheetDrawing

Parameters

$value string

Example

<?php
$drawing = new \Kendo\UI\SpreadsheetSheetDrawing();
$drawing->image('value');
?>

offsetX

The horizontal offset from the anchor cell's top-left corner, in pixels.

Returns

\Kendo\UI\SpreadsheetSheetDrawing

Parameters

$value float

Example

<?php
$drawing = new \Kendo\UI\SpreadsheetSheetDrawing();
$drawing->offsetX(1);
?>

offsetY

The vertical offset from the anchor cell's top-left corner, in pixels.

Returns

\Kendo\UI\SpreadsheetSheetDrawing

Parameters

$value float

Example

<?php
$drawing = new \Kendo\UI\SpreadsheetSheetDrawing();
$drawing->offsetY(1);
?>

topLeftCell

A cell to which the drawing's top-left corner is anchored.

Returns

\Kendo\UI\SpreadsheetSheetDrawing

Parameters

$value string

Example

<?php
$drawing = new \Kendo\UI\SpreadsheetSheetDrawing();
$drawing->topLeftCell('value');
?>

width

The drawing's width in pixels.

Returns

\Kendo\UI\SpreadsheetSheetDrawing

Parameters

$value float

Example

<?php
$drawing = new \Kendo\UI\SpreadsheetSheetDrawing();
$drawing->width(1);
?>
In this article
Not finding the help you need?