SBSDKTextlineOrder
enum SBSDKTextlineOrder : NSUInteger {}
Part of the page layout analysis result. Describes the order of columns in top-to-bottom writing direction resp. of rows in left-right and right-left direction.
-
Columns are read from left-to-right order in top-bottom directional languages. (Japanese, etc.)
Declaration
Objective-C
SBSDKTextlineOrderLeftToRight
Swift
case leftToRight = 0
-
Columns are read from right-to-left order in top-bottom directional languages.
Declaration
Objective-C
SBSDKTextlineOrderRightToLeft
Swift
case rightToLeft = 1
-
Rows are read from top-to-bottom order in left-to-right or right-to-left directional languages. (English, etc.)
Declaration
Objective-C
SBSDKTextlineOrderTopToBottom
Swift
case topToBottom = 2