Rectangle.topLeft Property¶
Module: Rectangle
Type: Point
Definition¶
Top-left corner of the rectangle.
Point get topLeft => getTopLeft();
set topLeft(Point value) => setTopLeft(value);
Exceptions
An error has occurred during Finger Library execution.
public Point topLeft
{
get => GettopLeft();
set => SettopLeft(ref value);
}
Exceptions
An error has occurred during Finger Library execution.
public Point getTopLeft() throws FingerException
public void setTopLeft(Point topLeft) throws FingerException
Exceptions
An error has occurred during Finger Library execution.
public var topLeft: Point
get {
return try! getTopLeft()
}
}
Exceptions
An error has occurred during Finger Library execution.
int id3FingerRectangle_GetTopLeft (ID3_FINGER_RECTANGLE hRectangle, id3FingerPoint * sTopLeft)
int id3FingerRectangle_SetTopLeft (ID3_FINGER_RECTANGLE hRectangle, const id3FingerPoint * sTopLeft)
Returns