Rectangle.bottomLeft Property¶
Module: Rectangle
Type: Point
Definition¶
Bottom-left corner of the rectangle.
bottom_left: Point
Exceptions
An error has occurred during Document Library execution.
Point get bottomLeft => getBottomLeft();
set bottomLeft(Point value) => setBottomLeft(value);
Exceptions
An error has occurred during Document Library execution.
public Point bottomLeft
{
get => GetbottomLeft();
set => SetbottomLeft(ref value);
}
Exceptions
An error has occurred during Document Library execution.
public Point getBottomLeft() throws DocumentException
public void setBottomLeft(Point bottomLeft) throws DocumentException
Exceptions
An error has occurred during Document Library execution.
public var bottomLeft: Point
get {
return try! getBottomLeft()
}
}
Exceptions
An error has occurred during Document Library execution.
int id3DocumentRectangle_GetBottomLeft (ID3_DOCUMENT_RECTANGLE hRectangle, id3DocumentPoint * sBottomLeft)
int id3DocumentRectangle_SetBottomLeft (ID3_DOCUMENT_RECTANGLE hRectangle, const id3DocumentPoint * sBottomLeft)
Returns