Resource Base
Table of contents

This documentation is deprecated. It applies only to legacy version 2.x of Capture Vision and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

ParsedResult

The ParsedResult interface provides a structure representing the result object returned by Dynamsoft Code Parser.

interface ParsedResult {
  parsedResultItems: Array<ParsedResultItem>;
  hasItem: (item: ParsedResultItem) => boolean;
  removeItem: (item: ParsedResultItem) => void;
}

parsedResultItems

Returns an array that contains all ParsedResultItems.

hasItem()

Checks whether the specified ParsedResultItem exists.

removeItem()

Removes the specified ParsedResultItem.

This page is compatible for:

Is this page helpful?

YesYes NoNo