SeparatorCharacter

IMathDelimiter.SeparatorCharacter property

Delimiter Separator Character specifies the character that separates arguments in the delimiter object. The default: ‘|’.

public char SeparatorCharacter { get; set; }

Examples

Example:

[C#]
IMathDelimiter delimiter = new MathematicalText("x").Join("y").Enclose();
delimiter.SeparatorCharacter = '$';

See Also