Rectangle.topRight Property¶
Module: Rectangle
Type: Point
Definition¶
Top-right corner of the rectangle.
Point get topRight => getTopRight();
set topRight(Point value) => setTopRight(value);
Exceptions
An error has occurred during Finger Library execution.
public Point topRight
{
get => GettopRight();
set => SettopRight(ref value);
}
Exceptions
An error has occurred during Finger Library execution.
public Point getTopRight() throws FingerException
public void setTopRight(Point topRight) throws FingerException
Exceptions
An error has occurred during Finger Library execution.
public var topRight: Point
get {
return try! getTopRight()
}
}
Exceptions
An error has occurred during Finger Library execution.
int id3FingerRectangle_GetTopRight (ID3_FINGER_RECTANGLE hRectangle, id3FingerPoint * sTopRight)
int id3FingerRectangle_SetTopRight (ID3_FINGER_RECTANGLE hRectangle, const id3FingerPoint * sTopRight)
Returns