[]
Represents a collection of OMathElement instances.
public class OMathElementCollection : ContentObjectCollection<OMathElement>, IContentList<OMathElement>, IReadOnlyList<OMathElement>, IReadOnlyCollection<OMathElement>, IEnumerable<OMathElement>, IEnumerable
Adds a new OMathElement to the collection at the End location. Only child elements of OMathDelimiter and OMathEquationArray structures can be added to the collection.
public OMathElement Add()
The added OMathElement.
Adds a new OMathElement to the collection at the End location. Only child elements of OMathDelimiter and OMathEquationArray structures can be added to the collection.
public OMathElement Add(OMathBuiltInEquation equation)
equation OMathBuiltInEquationThe built-in equation to fill the OMathElement.
The added OMathElement.
Adds a new OMathElement to the collection at the End location. Only child elements of OMathDelimiter and OMathEquationArray structures can be added to the collection.
public OMathElement Add(string text)
text stringThe element text.
The added OMathElement.
Inserts a new OMathElement into the collection at the specified location. Only child elements of OMathDelimiter and OMathEquationArray structures can be inserted to the collection.
public OMathElement Insert(InsertLocation location)
location InsertLocationThe target InsertLocation for the insertion.
The inserted OMathElement.
Inserts a new OMathElement into the collection at the specified location. Only child elements of OMathDelimiter and OMathEquationArray structures can be inserted to the collection.
public OMathElement Insert(OMathBuiltInEquation equation, InsertLocation location)
equation OMathBuiltInEquationThe built-in equation to fill the OMathElement.
location InsertLocationThe target InsertLocation for the insertion.
The inserted OMathElement instance.
Inserts a new OMathElement into the collection at the specified location. Only child elements of OMathDelimiter and OMathEquationArray structures can be inserted to the collection.
public OMathElement Insert(string text, InsertLocation location)
text stringThe element text.
location InsertLocationThe target InsertLocation for the insertion.
The inserted OMathElement.