THEOMargins
public class THEOMargins : NSObjectThe THEOMargins class is used to define quadruple margins.
- 
                  
                  The top margin. DeclarationSwift public let top: Int
- 
                  
                  The right margin. DeclarationSwift public let right: Int
- 
                  
                  The bottom margin. DeclarationSwift public let bottom: Int
- 
                  
                  The left margin. DeclarationSwift public let left: Int
- 
                  
                  Constructs a new THEOMargins instance. DeclarationSwift public init(top: Int, right: Int, bottom: Int, left: Int)ParameterstopThe top margin value. rightThe right margin value. bottomThe bottom margin value. leftThe left margin value. 
- 
                  
                  Constructs a new THEOMargins instance. DeclarationSwift public convenience init(horizontal: Int, vertical: Int)ParametershorizontalThe left and right margins value. verticalThe top and bottom margins value. 
- 
                  
                  Constructs a new THEOMargins instance. DeclarationSwift public convenience init(all: Int)ParametersallWill apply this margin for all sides. (left, right, top and bottom) 
