DetectedDocument.bounds Property

Module: DetectedDocument

Type: PointList

Definition

Boundaries of the document detected, in the following order: top-left, top-right, bottom-right, bottom-left.

bounds: PointList

Exceptions

An error has occurred during Document Library execution.
PointList get bounds => getBounds();
set bounds(PointList value) => setBounds(value);

Exceptions

An error has occurred during Document Library execution.
public PointList bounds
{
    get => Getbounds();
    set => Setbounds(ref value);
}

Exceptions

An error has occurred during Document Library execution.
public PointList getBounds() throws DocumentException
public void setBounds(PointList bounds) throws DocumentException

Exceptions

An error has occurred during Document Library execution.
public var bounds: PointList
    get {
        return try! getBounds()
    }
}

Exceptions

An error has occurred during Document Library execution.
int id3DetectedDocument_GetBounds (ID3_DETECTED_DOCUMENT hDetectedDocument, ID3_DOCUMENT_POINT_LIST hBounds)
int id3DetectedDocument_SetBounds (ID3_DETECTED_DOCUMENT hDetectedDocument, ID3_DOCUMENT_POINT_LIST hBounds)

Returns

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