[]
Represents a collection of Run objects.
public class RunCollection : ContentObjectCollection<Run>, IContentList<Run>, IReadOnlyList<Run>, IReadOnlyCollection<Run>, IEnumerable<Run>, IEnumerable
public Run Add()
public Run Add(Style style)
style
StyleThe run character or linked paragraph style.
public Run Add(string text, Style style)
public Run Add(string text)
text
stringThe text of the inserted Run
Inserts a Run into this collection at a specified location.
public Run Insert(InsertLocation location)
location
InsertLocationThe target InsertLocation for the insertion.
Inserts a Run into this collection at a specified location.
public Run Insert(Style style, InsertLocation location)
style
StyleThe run character or linked paragraph style.
location
InsertLocationThe target InsertLocation for the insertion.
Inserts a Run into this collection at a specified location.
public Run Insert(string text, InsertLocation location)
text
stringThe text of the inserted Run
location
InsertLocationThe target InsertLocation for the insertion.
Inserts a Run into this collection at a specified location.
public Run Insert(string text, Style style, InsertLocation location)
text
stringThe text of the inserted Run
style
StyleThe run character or linked paragraph style.
location
InsertLocationThe target InsertLocation for the insertion.