Property RawValue
- Namespace
- DocWright.Reporting.Pagination
- Assembly
- DocWright.Reporting.dll
RawValue
Gets the textbox's value before it was formatted — a number, a date, a boolean or a string — or null when it had none.
public object? RawValue { get; }
Property Value
Remarks
Value is what the page shows; this is what it means. An export to a
format that stores typed values rather than text needs both: a spreadsheet cell holding
the number 612940 under a #,##0 format displays as 612,940 and still sums,
while one holding the string "612,940" displays identically and sums to zero.
It is the first run's value for a multi-run textbox, and the whole formatted text
when the runs could not be reduced to one — the same rule ReportItems!X.Value
follows, so the two never disagree.