DSLocalizedTextLineElement
The DSLocalizedTextLineElement class represents a localized text line element. It inherits from the DSRegionObjectElement class.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSLocalizedTextLineElement: DSRegionObjectElementclass LocalizedTextLineElement: RegionObjectElement
Inheritance: DSRegionObjectElement -> DSLocalizedTextLineElement
Properties
| Property | Type | Description |
|---|---|---|
characterQuads |
NSArray<DSQuadrilateral *> * | The quadrilaterals of all characters in the text line. |
rowNumber |
NSInteger | The row number of the text line. |
characterQuads
The quadrilaterals of all characters in the text line.
- Objective-C
- Swift
@property (nonatomic, nullable, readonly) NSArray<DSQuadrilateral *>* characterQuads;var characterQuads: [Quadrilateral]? { get }
rowNumber
The row number of the text line.
- Objective-C
- Swift
@property (nonatomic, assign, readonly) NSInteger rowNumber;var rowNumber: Int { get }