[]
Represents a collection of ComplexField objects.
public class ComplexFieldCollection : ContentRangeCollection<ComplexField>, IContentList<ComplexField>, IReadOnlyList<ComplexField>, IReadOnlyCollection<ComplexField>, IEnumerable<ComplexField>, IEnumerable
Adds a ComplexField to this collection.
public ComplexField Add(IFieldOptions options)
options IFieldOptionsThe complex field options.
The added ComplexField.
Adds a ComplexField to this collection.
public ComplexField Add(string code, string result = null)
The added ComplexField.
Inserts a ComplexField into this collection at the specified location.
public ComplexField Insert(IFieldOptions options, InsertLocation location)
options IFieldOptionsThe complex field options.
location InsertLocationThe target InsertLocation for the insertion.
The inserted ComplexField.
Inserts a ComplexField into this collection at the specified location.
public ComplexField Insert(string code, InsertLocation location)
code stringThe complex field code.
location InsertLocationThe target InsertLocation for the insertion.
The inserted ComplexField.
Inserts a ComplexField into this collection at the specified location.
public ComplexField Insert(string code, string result, InsertLocation location)
code stringThe complex field code.
result stringThe result text of the inserted field.
location InsertLocationThe target InsertLocation for the insertion.
The inserted ComplexField.
Inserts a ComplexField into this collection at the specified location.
public ComplexField Insert(string code, string result, RangeLocation location)
code stringThe complex field code.
result stringThe result text of the inserted field.
location RangeLocationThe target RangeLocation for the insertion.
The inserted ComplexField.