Rectangle.bottomRight Property

Module: Rectangle

Type: Point

Definition

Bottom-right corner of the rectangle.

bottom_right: Point

Exceptions

An error has occurred during Document Library execution.
Point get bottomRight => getBottomRight();
set bottomRight(Point value) => setBottomRight(value);

Exceptions

An error has occurred during Document Library execution.
public Point bottomRight
{
    get => GetbottomRight();
    set => SetbottomRight(ref value);
}

Exceptions

An error has occurred during Document Library execution.
public Point getBottomRight() throws DocumentException
public void setBottomRight(Point bottomRight) throws DocumentException

Exceptions

An error has occurred during Document Library execution.
public var bottomRight: Point
    get {
        return try! getBottomRight()
    }
}

Exceptions

An error has occurred during Document Library execution.
int id3DocumentRectangle_GetBottomRight (ID3_DOCUMENT_RECTANGLE hRectangle, id3DocumentPoint * sBottomRight)
int id3DocumentRectangle_SetBottomRight (ID3_DOCUMENT_RECTANGLE hRectangle, const id3DocumentPoint * sBottomRight)

Returns

int
An error code.
See id3DocumentError file for the list of possible error codes.