该接口提供一组条码检测结果的集合。 更多...
Public 成员函数 | |
| void | Draw (HDC hdc, int index, LPVBarcodeDrawFlags drawFlags, double zoomX, double zoomY, double panX, double panY) |
| void | DrawAll (HDC hdc, LPVBarcodeDrawFlags drawFlags, double zoomX, double zoomY, double panX, double panY) |
| ILBarcodeResult * | Item (int index) |
Public 成员函数 继承自 ILObjects | |
| int | Count () |
| BOOL | Empty () |
| ILObject * | ItemObject (int objIndex) |
Public 成员函数 继承自 ILObject | |
| ILObject * | Copy () |
| LPVErrorCode | Load (LString filename) |
| void | Reset () |
| LPVErrorCode | Save (LString filename) |
| BOOL | Valid () |
额外继承的成员函数 | |
属性 继承自 ILObject | |
| LString | Name [get, set] |
| 对象的名称,默认为空。 大多数情况下,LPV 算法类并不使用这个名称。 若 ILDrawable::SetDrawName() 启用,该名称将被绘制在对象的附近 更多... | |
该接口提供一组条码检测结果的集合。
通常通过 ILBarcodeDetector::Detect() 函数获得 LBarcodeResults 对象。 可以通过该接口访问集合中的单个条码结果,并将其绘制到图形界面上。
注:该接口在 Linux / MacOS 平台暂不可用。
| void Draw | ( | HDC | hdc, |
| int | index, | ||
| LPVBarcodeDrawFlags | drawFlags, | ||
| double | zoomX, | ||
| double | zoomY, | ||
| double | panX, | ||
| double | panY | ||
| ) |
绘制索引对应的单个条码检测结果到给定设备。
| [in] | index | 输入索引,从 0 开始但小于总数的数字 |
| [in] | drawFlags | 控制条码绘制内容,使用方式请查阅 LPVBarcodeDrawFlags |
| void DrawAll | ( | HDC | hdc, |
| LPVBarcodeDrawFlags | drawFlags, | ||
| double | zoomX, | ||
| double | zoomY, | ||
| double | panX, | ||
| double | panY | ||
| ) |
绘制所有条码检测结果到给定设备。
| [in] | drawFlags | 控制条码绘制内容,使用方式请查阅 LPVBarcodeDrawFlags |
| ILBarcodeResult* Item | ( | int | index | ) |
获取给定索引对应的条码检测结果
| [in] | index | 输入索引,从 0 开始但小于总数的数字 |
| result | 返回索引对应的单个条码检测结果 |