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 int
Type represents a border type.
const ( // Left is a border type that borders the left side. Left Type = 1 << iota // Top is a border type that borders the top side. Top // Right is a border type that borders the right side. Right // Bottom is a border type that borders the bottom side. Bottom // Full is a border type that borders all sides. Full = Left | Top | Right | Bottom )
const None Type = 0
None is the default border type.
Click to show internal directories.
Click to hide internal directories.