GEOS
|
Structure to set up each colum parameters. More...
#include <TableLayout.hpp>
Public Member Functions | |
ColumnParam (std::string const &name, Alignment align) | |
Construct a ColumnParam object with the specified name and alignment. More... | |
ColumnParam (std::string const &name, Alignment align, bool display) | |
Construct a ColumnParam object with the specified name, alignment, and display flag. More... | |
Public Attributes | |
string | columnName |
Name for a column. | |
Alignment | alignment = Alignment::right |
Alignment for a column. By default aligned to the right side. | |
bool | enabled = true |
A boolean to display a colummn. | |
std::vector< string > | splitColumnNameLines |
Vector containing substring column name delimited by "\n". | |
Structure to set up each colum parameters.
Definition at line 56 of file TableLayout.hpp.
|
inline |
Construct a ColumnParam object with the specified name and alignment.
name | The name of the column |
align | The alignment of the column |
Definition at line 72 of file TableLayout.hpp.
|
inline |
Construct a ColumnParam object with the specified name, alignment, and display flag.
name | The name of the column |
align | The alignment of the column |
display | Flag indicating whether the column is enabled |
Definition at line 82 of file TableLayout.hpp.