Rectangle.bottomRight Property¶
Module: Rectangle
Type: Point
Definition¶
Bottom-right corner of the rectangle.
bottom_right: Point
Exceptions
An error has occurred during Devices Library execution.
Point get bottomRight => getBottomRight();
set bottomRight(Point value) => setBottomRight(value);
Exceptions
An error has occurred during Devices Library execution.
public Point bottomRight
{
get => GetbottomRight();
set => SetbottomRight(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public Point getBottomRight() throws DevicesException
public void setBottomRight(Point bottomRight) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesRectangle_GetBottomRight (ID3_DEVICES_RECTANGLE hRectangle, id3DevicesPoint * sBottomRight)
int id3DevicesRectangle_SetBottomRight (ID3_DEVICES_RECTANGLE hRectangle, const id3DevicesPoint * sBottomRight)
Returns