Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
TextResultOrderModes
is a parameter to specify the order of the returned text results. It consisits of one or more modes, each mode represents a way to order the result.
Returns the text results in descending order by confidence.
Returns the text results in position order, from top to bottom, then left to right.
Returns the text results in alphabetical and numerical order by barcode format string.
PublicRuntimeSettings
MemberTextResultOrderModes
can be set dynamically during runtime as a member of PublicRuntimeSettings
struct, it is an array with 8 TextResultOrderMode
Enumeration items.
Code Snippet in C++
//...other codes
PublicRuntimeSettings* pSettings = new PublicRuntimeSettings;
int errorCode = reader->GetRuntimeSettings(pSettings);
pSettings->textResultOrderModes[0] = TROM_CONFIDENCE;
reader->UpdateRuntimeSettings(pSettings);
delete pSettings;
//...other codes
See Also
PublicRuntimeSettings:
JavaScript | C | C++ | .NET | Python | Java | Java-Android | Objective-C & SwiftTextResultOrderMode
EnumerationTextResultOrderModes
as a JSON parameter is a JSON Object array defined as below.
| Key Name | Key Value |
| ——– | ——— |
| TextResultOrderModes | a JSON object defined as below |
Key Name | Key Value | Description |
---|---|---|
Mode | Any one in Candidate Mode List as string | (Required) Specifies a mode for ordering. |
JSON Parameter Example
{
"TextResultOrderModes": [
{"Mode"":"TROM_CONFIDENCE"},
{"Mode":"TROM_POSITION"},
{"Mode":"TROM_FORMAT"}
]
}
TextResultOrderModes
has no influence on the Speed.
TextResultOrderModes
has no influence on the Read Rate.
TextResultOrderModes
has no influence on the Accuracy.
latest version