Method PushCellData
PushCellData(SharedTableEntry, IList<StringTableEntry>, out string, out string)
Extracts the data that should populate the columns cell for the row associated with the Key.
Declaration
public abstract void PushCellData(SharedTableData.SharedTableEntry keyEntry, IList<StringTableEntry> tableEntries, out string value, out string note)
Parameters
Type | Name | Description |
---|---|---|
SharedTableData.SharedTableEntry | keyEntry | The Key that represents the row in the spreadsheet. |
IList<StringTableEntry> | tableEntries | The StringTableEntry for the current SharedTableData.SharedTableEntry. The order of the tables will match the source StringTableCollection, If a table does not contain data for the current key then a null entry will be used. |
string | value | The value to be used for the cell. This can be null if PushFields is Note or the cell should be empty. |
string | note | The value to be used for the cell note. This can be null if PushFields is Value or if there should not be a note for this cell. |