2using System.Threading.Tasks;
46 string ColumnId = await this.columnId.Evaluate(State.
Variables);
47 string Header = await this.header.Evaluate(State.
Variables);
48 string DataSourceId = await this.dataSourceId.Evaluate(State.
Variables);
49 string Partition = await this.partition.Evaluate(State.
Variables);
50 SKColor? FgColor = this.fgColor.IsEmpty ? null : (SKColor?)await this.fgColor.Evaluate(State.
Variables);
51 SKColor? BgColor = this.bgColor.IsEmpty ? null : (SKColor?)await this.bgColor.Evaluate(State.
Variables);
53 byte? NrDecimals = this.nrDecimals.IsEmpty ? null : (
byte?)await this.nrDecimals.Evaluate(State.
Variables);
55 return new Column(ColumnId, Header, DataSourceId, Partition, FgColor, BgColor, Alignment, NrDecimals);
Defines a column in a table.
async Task< Column > Evaluate(ReportState State)
Evaluates the record definition.
TableColumn(XmlElement Xml)
Defines a column in a table.
Class containing the state of a report.
Variables Variables
Current set of variables.
Report enumerated attribute.
Defines a column in a table.
ColumnAlignment
Column alignment.