[]
Represents a collection of FieldCode objects.
public class FieldCodeCollection : ContentObjectCollection<FieldCode>, IContentList<FieldCode>, IReadOnlyList<FieldCode>, IReadOnlyCollection<FieldCode>, IEnumerable<FieldCode>, IEnumerable
Adds a FieldCode to this collection.
public FieldCode Add(string code)
code
stringThe field code to add.
Inserts a FieldCode into this collection before another field code.
public FieldCode Insert(string code, FieldCode before)
code
stringThe field code to insert.
before
FieldCodeThe FieldCode object before which to insert the new one. If this parameter is null, the new code will be added to the end of the collection.