Region
public struct Region : Decodable
A document’s page layout region, indicating its origin, size, type, lines and words
-
Top-Left X origin
Declaration
Swift
public let l: Double -
Top-Left Y origin
Declaration
Swift
public let t: Double -
Region width
Declaration
Swift
public let w: Double -
Region height
Declaration
Swift
public let h: Double -
Region type
Declaration
Swift
public let type: String? -
(Optional) Amount of lines in that region
Declaration
Swift
public let lines: [Region]? -
(Optional) Amount of words in that region
Declaration
Swift
public let wds: [Word]?
View on GitHub
Region Structure Reference