Delimit

MathBlock.Delimit method

Delimits child elements with separator character (without the brackets)

public IMathDelimiter Delimit(char separatorCharacter)
ParameterTypeDescription
separatorCharacterCharSeparator character

Return Value

The math element of type IMathDelimiter

Examples

Example:

[C#]
MathBlock mathBlock = new MathematicalText("x").Join("y");
IMathDelimiter delimiterElement = mathBlock.Delimit('|');

See Also