Documentation ¶
Overview ¶
Package border contains all border types.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Type ¶
type Type string
Type represents a border type.
const ( // None is the default border type. None Type = "" // Full is a border type that borders all sides. Full Type = "1" // Left is a border type that borders the left side. Left Type = "L" // Top is a border type that borders the top side. Top Type = "T" // Right is a border type that borders the right side. Right Type = "R" // Bottom is a border type that borders the bottom side. Bottom Type = "B" )
Click to show internal directories.
Click to hide internal directories.