Rectangle.bottomRight Property¶
Module: Rectangle
Type: Point
Definition¶
Bottom-right corner of the rectangle.
bottom_right: Point
Exceptions
An error has occurred during Finger Library execution.
Point get bottomRight => getBottomRight();
set bottomRight(Point value) => setBottomRight(value);
Exceptions
An error has occurred during Finger Library execution.
public Point bottomRight
{
get => GetbottomRight();
set => SetbottomRight(ref value);
}
Exceptions
An error has occurred during Finger Library execution.
public Point getBottomRight() throws FingerException
public void setBottomRight(Point bottomRight) throws FingerException
Exceptions
An error has occurred during Finger Library execution.
public var bottomRight: Point
get {
return try! getBottomRight()
}
}
Exceptions
An error has occurred during Finger Library execution.
int id3FingerRectangle_GetBottomRight (ID3_FINGER_RECTANGLE hRectangle, id3FingerPoint * sBottomRight)
int id3FingerRectangle_SetBottomRight (ID3_FINGER_RECTANGLE hRectangle, const id3FingerPoint * sBottomRight)
Returns