Skip to content

5aa00cf8 449c 8c38 8767 8e3c8f985290

Fernando Garcia edited this page May 8, 2018 · 1 revision

NumberDataTypeModel.Separator Property

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)

Syntax

C#

public YesNo Separator { get; set; }

VB

Public Property Separator As YesNo
	Get
	Set

Property Value

Type: YesNo
Yes if displays thousands separator; otherwise, No. The default is No.

Exceptions

 

Exception Condition
InvalidEnumArgumentException The value specified is outside the range of valid values.

Remarks

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
A X value indicates that the writer supports this element.

Examples

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>

See Also

Reference

NumberDataTypeModel Class
iTin.Export.Model Namespace

Clone this wiki locally