5aa00cf8 449c 8c38 8767 8e3c8f985290 - iAJTin/iExportEngine GitHub Wiki
Additional header content
Gets or sets a value indicating whether displays thousands separator.
Namespace: iTin.Export.Model
Assembly: iTin.Export.Core (in iTin.Export.Core.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public YesNo Separator { get; set; }VB
Public Property Separator As YesNo
Get
SetType: YesNo
Yes if displays thousands separator; otherwise, No. The default is No.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException | The value specified is outside the range of valid values. |
ITEE Object Element Usage
<Number Separator="Yes|No" ...>
...
</Number>Compatibility table with native writers.
| Comma-Separated Values CsvWriter |
Tab-Separated Values TsvWriter |
SQL Script SqlScriptWriter |
XML Spreadsheet 2003 Spreadsheet2003TabularWriter |
|---|---|---|---|
| X | X | X | X |
X value indicates that the writer supports this element.
In the following example shows how create a new style.
XML
<Style Name="TopAggregate">
<Content Color="#C9C9C9">
<Alignment Horizontal="Center"/>
<Number Decimals="0" Separator="Yes">
<Negative Color="Yellow" Sign="Brackets"/>
<Error Value="-9999">
<Comment Show="Yes">
<Text>Original value: </Text>
<Font Size="12" Color="Navy"/>
</Comment>
</Error>
</Number>
</Content>
<Font Name="Segoe UI" Size="12" Color="Navy" Bold="Yes"/>
</Style>