コード例 #1
0
 /// <summary>
 /// Default Values for a Table Column
 /// </summary>
 /// <param name="id">The statistical ID associated with the column</param>
 /// <param name="name">The Name to put on the column heading</param>
 /// <param name="defaultDisplay">The default display type</param>
 /// <param name="graphical">Whether the value can be displayed graphically</param>
 /// <param name="display">Whether to display the column by default</param>
 /// <param name="width">The default with of the column</param>
 public TableColumn(TableColumns id, string name, ColumnDisplayType defaultDisplay, List <ColumnDisplayType> displayOptions, bool display, bool compare, uint width)
 {
     this.columnIDfield           = id;
     this.columnNamefield         = name;
     this.defaultDisplayTypefield = defaultDisplay;
     this.displayTypeOptionsfiels = displayOptions;
     this.displayColumnfield      = display;
     this.canComparefield         = compare;
     this.defaultWidthfield       = width;
 }
コード例 #2
0
 /// <summary>
 /// Default Values for a Table Column
 /// </summary>
 /// <param name="id">The statistical ID associated with the column</param>
 /// <param name="name">The Name to put on the column heading</param>
 /// <param name="defaultDisplay">The default display type</param>
 /// <param name="graphical">Whether the value can be displayed graphically</param>
 /// <param name="display">Whether to display the column by default</param>
 /// <param name="width">The default with of the column</param>
 public TableColumn(TableColumns id, string name, ColumnDisplayType defaultDisplay, List<ColumnDisplayType> displayOptions, bool display, bool compare, uint width)
 {
     this.columnIDfield = id;
     this.columnNamefield = name;
     this.defaultDisplayTypefield = defaultDisplay;
     this.displayTypeOptionsfiels = displayOptions;
     this.displayColumnfield = display;
     this.canComparefield = compare;
     this.defaultWidthfield = width;
 }