Rectangle.bottomLeft Property¶
Module: Rectangle
Type: Point
Definition¶
Bottom-left corner of the rectangle.
bottom_left: Point
Exceptions
An error has occurred during Devices Library execution.
Point get bottomLeft => getBottomLeft();
set bottomLeft(Point value) => setBottomLeft(value);
Exceptions
An error has occurred during Devices Library execution.
public Point bottomLeft
{
get => GetbottomLeft();
set => SetbottomLeft(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public Point getBottomLeft() throws DevicesException
public void setBottomLeft(Point bottomLeft) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesRectangle_GetBottomLeft (ID3_DEVICES_RECTANGLE hRectangle, id3DevicesPoint * sBottomLeft)
int id3DevicesRectangle_SetBottomLeft (ID3_DEVICES_RECTANGLE hRectangle, const id3DevicesPoint * sBottomLeft)
Returns