DSBufferedCharacterItemSet
The DSBufferedCharacterItemSet class represents the buffered characters and the character cluster that generated from the buffered characters.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSBufferedCharacterItemSet : NSObjectclass BufferedCharacterItemSet: NSObject
Properties
| Property | Type | Description |
|---|---|---|
items |
NSArray<DSBufferedCharacterItem *> * | An array of BufferedCharacterItem objects that represents the buffered characters. |
characterClusters |
NSArray<DSCharacterCluster *> * | An array of CharacterCluster objects that represents the clustered characters. |
items
An array of BufferedCharacterItem objects that represents the buffered characters.
- Objective-C
- Swift
@property (nonatomic, readonly) NSArray<DSBufferedCharacterItem *> * items;var items: [BufferedCharacterItem] { get }
characterClusters
An array of CharacterCluster objects that represents the clustered characters.
- Objective-C
- Swift
@property (nonatomic, readonly) NSArray<DSCharacterCluster *> * characterClusters;var characterClusters: [CharacterCluster] { get }