Ejemplo n.º 1
0
 /// <summary>
 /// Set <see cref="Alignments"/> all with the same value
 /// </summary>
 /// <param name="tableAlignment">New value for all <see cref="Alignments"/></param>
 public void SetAlignement(TableAlignment tableAlignment)
 {
     for (int c = 0; c < Columns; c++)
     {
         Alignments[c] = tableAlignment;
     }
 }
Ejemplo n.º 2
0
 internal ObjectConsoleField(int size = 50, TableAlignment alignment = TableAlignment.Left)
 {
     this.Size      = size;
     this.Alignment = alignment;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Set the alignment for the indexed column
 /// </summary>
 /// <param name="col">The column which the alignment is set</param>
 /// <param name="tableAlignment">Its new <see cref="TableAlignment"/></param>
 public void SetAlignement(int col, TableAlignment tableAlignment)
 {
     Alignments[col] = tableAlignment;
 }
Ejemplo n.º 4
0
 internal void method_15(TableAlignment A_0)
 {
     this.tableAlignment_0 = A_0;
 }