API Reference
Class
TableValueFormatContext
Provides context information for formatting a table cell value.
Inheritance
- Object
- TableValueFormatContext
Constructors
public TableValueFormatContext(Table table, String header, Object value, Object rowObject, Int32 columnIndex, Int32 rowIndex) #Initializes a new instance of the TableValueFormatContext class.
Parameters
- table HtmlForgeX.Table
- Table containing the value.
- header System.String
- Header associated with the column.
- value System.Object
- Original cell value.
- rowObject System.Object
- Underlying row object.
- columnIndex System.Int32
- Zero-based column index.
- rowIndex System.Int32
- Zero-based row index.
Inherited Methods
Properties
public Table Table { get; } #The table that owns the value being formatted.
public String Header { get; } #The header text associated with the current column.
public Object Value { get; } #The raw cell value prior to formatting.
public Object RowObject { get; } #The row object that produced the value, if any.
public Int32 ColumnIndex { get; } #Zero-based column index.