EndingCharacter

IMathDelimiter.EndingCharacter property

Delimiter Ending Character specifies the ending, or closing, delimiter character. Mathematical delimiters are enclosing characters such as parentheses, brackets, and braces. The default: ‘)’.

public char EndingCharacter { get; set; }

Examples

Example:

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

See Also