Interface IRectangle
Class representing a rectangle in 2D space. It consists of a location (left and top) and
dimensions (width and height). Provided values are defined in same units used by the page,
point units. Point units are only equal to pixels when zoom value is 1.
Assembly: Api.dll
Syntax
public interface IRectangle
Properties
|
Edit this page
View Source
Height
Declaration
double Height { get; init; }
Property Value
|
Edit this page
View Source
Left
Declaration
double Left { get; init; }
Property Value
|
Edit this page
View Source
Top
Declaration
double Top { get; init; }
Property Value
|
Edit this page
View Source
Width
Declaration
double Width { get; init; }
Property Value