Class LayoutBox
Abstract base for positioned rectangular regions in worksheet layout, providing bounds for rendering calculations.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Layout
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public abstract class LayoutBox
Properties
BoundingRectangle
Complete rectangular bounds with rounded coordinates for rendering precision.
Declaration
public Rect BoundingRectangle { get; }
Property Value
|
System.Windows.Rect
The bounding rectangle. |
Height
Vertical extent of this layout box in layout units.
Declaration
public double Height { get; }
Property Value
|
System.Double
The height of the box. |
Left
Horizontal position of the left edge of this layout box in layout coordinates.
Declaration
public double Left { get; }
Property Value
|
System.Double
The position of the box according to the x-axis. |
Size
Combined width and height dimensions of this layout box.
Declaration
public Size Size { get; }
Property Value
|
System.Windows.Size
The size of the box. |
Top
Vertical position of the top edge of this layout box in layout coordinates.
Declaration
public double Top { get; }
Property Value
|
System.Double
The position of the box according to the y-axis. |
Width
Horizontal extent of this layout box in layout units.
Declaration
public double Width { get; }
Property Value
|
System.Double
The width of the box. |
Methods
ToString()
Converts the layout box to a string showing its bounding rectangle coordinates.
Declaration
public override string ToString()
Returns
|
System.String
A System.String that represents the current System.Object. |