KDIBorderOptions
enum KDIBorderOptions : NSUInteger {}
Typedef for possible mask options describing the border options of the receiver.
-
No borders are displayed.
Declaration
Objective-C
KDIBorderOptionsNone = 0
-
The top border is displayed.
Declaration
Objective-C
KDIBorderOptionsTop = 1 << 0
-
The left border is displayed.
Declaration
Objective-C
KDIBorderOptionsLeft = 1 << 1
-
The bottom border is displayed.
Declaration
Objective-C
KDIBorderOptionsBottom = 1 << 2
-
The right border is displayed.
Declaration
Objective-C
KDIBorderOptionsRight = 1 << 3
-
Top and bottom borders are displayed.
Declaration
Objective-C
KDIBorderOptionsTopAndBottom = KDIBorderOptionsTop | KDIBorderOptionsBottom
-
Left and right borders are displayed.
Declaration
Objective-C
KDIBorderOptionsLeftAndRight = KDIBorderOptionsLeft | KDIBorderOptionsRight
-
All borders are displayed.
Declaration
Objective-C
KDIBorderOptionsAll = KDIBorderOptionsTop | KDIBorderOptionsLeft | KDIBorderOptionsBottom | KDIBorderOptionsRight