PDFContainer
public enum PDFContainer : CaseIterable
A container defines the position of an element in the page.
Generally a document is vertically split up into a header, a content and a footer area. Also each part is horizontally split up into a left, a center and a right area.
-
Element is in no container, only real use is as a default value
Declaration
Swift
case none
-
Container at the top left
Declaration
Swift
case headerLeft
-
Container at the top center
Declaration
Swift
case headerCenter
-
Container at the top right
Declaration
Swift
case headerRight
-
Container in the center, aligned to left
Declaration
Swift
case contentLeft
-
Container in the center, aligned to center
Declaration
Swift
case contentCenter
-
Container in the center, aligned to right
Declaration
Swift
case contentRight
-
Container at the bottom left
Declaration
Swift
case footerLeft
-
Container at the bottom center
Declaration
Swift
case footerCenter
-
Container at the bottom right
Declaration
Swift
case footerRight