Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
TableInformation.cs
2{
6 public enum TextAlignment
7 {
11 Left,
12
16 Center,
17
21 Right
22 }
23
24 internal class TableInformation
25 {
26 public int Columns;
27 public int NrHeaderRows;
28 public int NrDataRows;
29 public string[][] Headers;
30 public string[][] Rows;
31 public int[][] HeaderPositions;
32 public int[][] RowPositions;
33 public TextAlignment[] Alignments;
34 public string[] AlignmentDefinitions;
35 public string Caption;
36 public string Id;
37 }
38}
TextAlignment
Text alignment of contents.