[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.OMathDelimiter

Class OMathDelimiter

Namespace
GrapeCity.Documents.Word
Assembly
GcDocs.Word.dll

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>
Inheritance
object
OMathDelimiter
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Properties

BeginCharacter

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; }

Property Value

string

EndCharacter

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; }

Property Value

string

Grow

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; }

Property Value

bool

Items

Gets the OMathElementCollection that represent child items of the delimiter structure.

public OMathElementCollection Items { get; }

Property Value

OMathElementCollection

SeparatorCharacter

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; }

Property Value

string

Shape

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; }

Property Value

OMathShapeDelimiter

StructType

Gets the OMathStructType of the structure.

public override OMathStructType StructType { get; }

Property Value

OMathStructType