IMathDelimiter

IMathDelimiter interface

Specifies the delimiter object, consisting of opening and closing characters (such as parentheses, braces, brackets, and vertical bars), and one or more mathematical elements inside, separated by a specified character. Examples: (𝑥2); [𝑥2|𝑦2]

public interface IMathDelimiter : IMathElement

Properties

NameDescription
Arguments { get; }One or more mathematical elements separated by delimiter characters
AsIMathElement { get; }Allows to get base IMathElement interface IMathElement
BeginningCharacter { get; set; }Delimiter Beginning Character specifies the beginning, or opening, delimiter character. Mathematical delimiters are enclosing characters such as parentheses, brackets, and braces. The default value: ‘(’.
DelimiterShape { get; set; }Specifies the shape of delimiters in the delimiter object. When is MathDelimiterShape.Centered, delimiters are centered around the math axis of the mathematical text and still be made to fit the entire height of their contents. When is MathDelimiterShape.Match, their height and shape are altered to exactly match their contents.
EndingCharacter { get; set; }Delimiter Ending Character specifies the ending, or closing, delimiter character. Mathematical delimiters are enclosing characters such as parentheses, brackets, and braces. The default: ‘)’.
GrowToMatchOperandHeight { get; set; }Specifies the growth of BeginningCharacter, SeparatorCharacter, EndingCharacter When true, the delimiters grows vertically to match its operand height. The default value is true
SeparatorCharacter { get; set; }Delimiter Separator Character specifies the character that separates arguments in the delimiter object. The default: ‘|’.

Methods

NameDescription
Delimit(char)Delimits arguments using the specified delimiter character

Examples

Example:

[C#]
IMathElement element = new MathematicalText("x");
IMathDelimiter delimiter = element.Enclose();

See Also