NativeExcel for .Net Developer's Reference

FormulaCompilerSettings.ListSeparator Property

Gets or sets the char to use as the list separator

[Visual Basic]
Public Property ListSeparator As Char
[C#]
public char ListSeparator { get; set; }
[C++]
public: __property wchar_t get_ListSeparator();
public: __property void set_ListSeparator(wchar_t );
[JScript]
public function get ListSeparator() : char
public function set ListSeparator(char);

Property Value

Char. Default value is ';'.

Example

This example sets the comma as the formula compiler list separator.

[C#]
 NativeExcel.Factory.FormulaCompiler.ListSeparator = ','; 

See Also

FormulaCompilerSettings Class | NativeExcel Namespace | Factory.FormulaCompiler property