Rectangle.bottomLeft Property

Module: Rectangle

Type: Point

Definition

Bottom-left corner of the rectangle.

bottom_left: Point

Exceptions

An error has occurred during Face Library execution.
Point get bottomLeft => getBottomLeft();
set bottomLeft(Point value) => setBottomLeft(value);

Exceptions

An error has occurred during Face Library execution.
public Point bottomLeft
{
    get => GetbottomLeft();
    set => SetbottomLeft(ref value);
}

Exceptions

An error has occurred during Face Library execution.
public Point getBottomLeft() throws FaceException
public void setBottomLeft(Point bottomLeft) throws FaceException

Exceptions

An error has occurred during Face Library execution.
public var bottomLeft: Point
    get {
        return try! getBottomLeft()
    }
}

Exceptions

An error has occurred during Face Library execution.
int id3FaceRectangle_GetBottomLeft (ID3_FACE_RECTANGLE hRectangle, id3FacePoint * sBottomLeft)
int id3FaceRectangle_SetBottomLeft (ID3_FACE_RECTANGLE hRectangle, const id3FacePoint * sBottomLeft)

Returns

int
An error code.
See id3FaceError file for the list of possible error codes.