[]
Initialize the instance of the TextInfoItem class.
public TextInfoItem(string outputFormat, object value, CultureInfo culture, CultureInfo currencyCulture)
Type | Name | Description |
---|---|---|
string | outputFormat | The output format. |
object | value | The value. |
CultureInfo | culture | The culture. |
CultureInfo | currencyCulture | The culture of the currency. |
public void AddTextInfoItem(string outputFormat, object value, CultureInfo culture, CultureInfo currencyCulture)
{
CanvasItems.add(new TextInfoItem(outputFormat, value??0, culture, currencyCulture));
}
Type | Condition |
---|---|
ArgumentNullException | Thrown if "value" is null |