Documentation ¶
Overview ¶
Package align contains all align types.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Type ¶
type Type string
Type is a representation of a column align.
const ( // Left represents a left horizontal align. Left Type = "L" // Right represents a right horizontal align. Right Type = "R" // Center represents a center horizontal and/or vertical align. Center Type = "C" // Top represents a top vertical align. Top Type = "T" // Bottom represents a bottom vertical align. Bottom Type = "B" // Middle represents a middle align (from gofpdf). Middle Type = "M" // Justify represents a horizontal alignment that distributes // the text evenly between the left and right margins. Justify = "J" )
Click to show internal directories.
Click to hide internal directories.