LayoutElement
The LayoutElement structure represents an element in a layout result. It combines the element’s geometry with its origin information.
Definition
Assembly: DynamsoftUtility
Header File: DynamsoftUtility.h
typedef struct LayoutElement
{
CQuadrilateral quad;
LayoutElementSource source;
char reserved[32];
} LayoutElement;
Attributes
| Attribute | Type | Description |
|---|---|---|
quad |
CQuadrilateral | Geometric coordinates of the element. |
source |
LayoutElementSource | Origin of this element (Input / Inferred / None). |
quad
Geometric coordinates of the element.
CQuadrilateral quad;
See Also
source
Origin of this element.
LayoutElementSource source = LES_NONE;
See Also