Delimit

IMathBlock.Delimit method

Delimits all child elements with separator character (without the brackets)

public IMathDelimiter Delimit(char separatorCharacter)
ParameterTypeDescription
separatorCharacterCharCharacter used as a separator

Return Value

Instance of IMathDelimiter element

Examples

Example:

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

See Also