Documentation ¶
Index ¶
Constants ¶
View Source
const ( // DefaultMaxGridSum represents the max value from a cell grid width. DefaultMaxGridSum float64 = 12.0 // DefaultLineWidth represents the default line width in gofpdf. DefaultLineWidth float64 = 0.1 )
View Source
const ( // Arial represents an arial Font. Arial string = "arial" // Helvetica represents a helvetica Font. Helvetica string = "helvetica" // Symbol represents a symbol Font. Symbol string = "symbol" // ZapBats represents a zapfdingbats Font. ZapBats string = "zapfdingbats" // Courier represents a courier Font. Courier string = "courier" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Align ¶
type Align string
Align is arRepresentation of a column align.
const ( // Left represents a left horizontal align. Left Align = "L" // Right represents a right horizontal align. Right Align = "R" // Center represents a center horizontal and/or vertical align. Center Align = "C" // Top represents a top vertical align. Top Align = "T" // Bottom represents a bottom vertical align. Bottom Align = "B" // Middle represents a middle align (from gofpdf). Middle Align = "M" )
type LineStyle ¶ added in v0.36.0
type LineStyle string
LineStyle is a representation of a line style.
type Orientation ¶
type Orientation string
Orientation is a representation of a page orientation.
const ( // Portrait represents the portrait orientation. Portrait Orientation = "P" // Landscape represents the landscape orientation. Landscape Orientation = "L" )
type PageSize ¶
type PageSize string
PageSize is a representation of an page size.
const ( // A3 represents DIN/ISO A3 page size. A3 PageSize = "A3" // A4 represents DIN/ISO A4 page size. A4 PageSize = "A4" // A5 represents DIN/ISO A5 page size. A5 PageSize = "A5" // Letter represents US Letter page size. Letter PageSize = "Letter" // Legal represents US Legal page size. Legal PageSize = "Legal" )
Click to show internal directories.
Click to hide internal directories.