[]
Represents a delimiter Office Math structure, which consists of opening and closing delimiters characters, and one or more elements contained inside with a designated separator character between each element.
public class OMathDelimiter : OMathStruct, IBrowsable<OMathStruct>
Gets or sets the beginning, or opening, delimiter character.
The value cannot be null and its length cannot be more than one character.
Empty string value means the delimiter structure beginning character is absent.
Default value is Unicode character U+0028 (LEFT PARENTHESIS).
public string BeginCharacter { get; set; }
Gets or sets the ending, or closing, delimiter character.
The value cannot be null and its length cannot be more than one character.
Empty string value means the delimiter structure ending character is absent.
Default value is Unicode character U+0029 (RIGHT PARENTHESIS).
public string EndCharacter { get; set; }
Gets or sets whether to grow delimiter characters to match the size of the delimiter structure height.
Default value is true.
public bool Grow { get; set; }
Gets the OMathElementCollection that represent child items of the delimiter structure.
public OMathElementCollection Items { get; }
Gets or sets character that separates items in the delimiter structure.
The value cannot be null and its length cannot be more than one character.
Empty string value means the delimiter structure separator character is absent.
Default value is Unicode character U+2502 (BOX DRAWINGS LIGHT VERTICAL).
public string SeparatorCharacter { get; set; }
Gets or sets the shape of delimiter characters in the delimiter structure.
If the Grow property is set to false the value is always Match.
Default value is Centered.
public OMathShapeDelimiter Shape { get; set; }
Gets the OMathStructType of the structure.
public override OMathStructType StructType { get; }