예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Column"/> class with
 /// the a header.
 /// </summary>
 public Column(string header)
 {
     HeaderCell = new HeaderCell(header)
     {
         ParentColumn = this
     };
     CellHorizontalAlignment = HorizontalAlignment.Default;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Column"/> class.
 /// </summary>
 public Column(object header, HorizontalAlignment horizontalAlignment)
 {
     HeaderCell = new HeaderCell(header)
     {
         ParentColumn = this
     };
     CellHorizontalAlignment = horizontalAlignment;
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Column"/> class.
 /// </summary>
 public Column()
 {
     HeaderCell = new HeaderCell
     {
         ParentColumn = this
     };
     CellHorizontalAlignment = HorizontalAlignment.Default;
 }
예제 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Column"/> class.
 /// </summary>
 public Column(MultilineText header, HorizontalAlignment horizontalAlignment)
 {
     HeaderCell = new HeaderCell(header)
     {
         ParentColumn = this
     };
     CellHorizontalAlignment = horizontalAlignment;
 }