RECO_LATTICE_ELEMENT Structure
RECO_LATTICE_ELEMENT Structure |
Corresponds to one word or one East Asian character, typically; however, an element may also correspond to a gesture, a shape, or some other code.
Declaration
[C++]
typedef struct tagRECO_LATTICE_ELEMENT
{
RECO_SCORE score;
WORD type;
BYTE *pData;
ULONG ulNextColumn;
ULONG ulStrokeNumber;
RECO_LATTICE_PROPERTIES epProp;
} RECO_LATTICE_ELEMENT;
Members
Name | Description |
---|---|
score | Integer value that represents the shape probability assigned for this element. |
type | Describes whether the element contains wide string or wide character data.
|
pData | Holds the recognition result. This can be a string or a character.
Note: For recognizers of western languages, the pData member contains a pointer to a |
ulNextColumn | Contains the index for the next column. |
ulStrokeNumber | Count of strokes used by this alternate. |
epProp | Properties structure. These are properties that are applicable to this element only.
For details about properties, see the RECO_LATTICE_PROPERTIES structure. |