[]
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(string code, string result = null)
code
stringThe complex field code.
result
stringThe result text of the added field.
The added 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.