RECO_LATTICE 结构 (rectypes.h)
用作格子的入口点。
语法
typedef struct tagRECO_LATTICE {
ULONG ulColumnCount;
RECO_LATTICE_COLUMN *pLatticeColumns;
ULONG ulPropertyCount;
GUID *pGuidProperties;
ULONG ulBestResultColumnCount;
ULONG *pulBestResultColumns;
ULONG *pulBestResultIndexes;
} RECO_LATTICE;
成员
ulColumnCount
格子中的列数。
pLatticeColumns
由格子包含 的RECO_LATTICE_COLUMN 结构的数组。
ulPropertyCount
分配给格的属性数。 有关属性的详细信息,请参阅 RECO_LATTICE_PROPERTIES 结构。
pGuidProperties
属性 GUID 的数组。 这些属性的 GUID 可以是 Msinkaut.h 头文件中定义的属性 (例如行指标) 或识别器定义的自定义属性。
ulBestResultColumnCount
最佳结果包含的列数。
pulBestResultColumns
一个数组,其中包含构成最佳结果的 pLatticeColumns 数组中列的索引。
pulBestResultIndexes
pulBestResultColumn 指定的相应列的 pLatticeElements 数组中的元素索引数组。
注解
ulBestResultColumnCount、pulBestResultColumns 和 pulBestResultIndexes 成员一起使用,以保存有关所有列之间顶部的交替的信息。 这些值应由识别器填充,即使在最简单的情况下,没有分段且只有一列。 使用“together”示例,如果识别器确定最佳结果为“to gather”,ulBestResultColumnCount 将为 3,pulBestResultColumns 数组将包含 [0,1,2],pulBestResultIndexes 数组将包含 [1,0,2]。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP Tablet PC Edition [仅限桌面应用] |
最低受支持的服务器 | 无受支持的版本 |
标头 | rectypes.h |