FormCollection
Summary
Represents a collection of forms. A collection may contain mixed form types or only forms of a specific type. To filter and convert a mixed collection to a specific form collection use the appropriate extension method.
Properties
Name Description
int Count Gets the number of forms in this form collection.
Methods
Name Description
void Add(Form) Adds the specified form to this form collection.
void Add(string) Adds the form that has the specified Editor ID to this form collection.
bool Contains(Form) Determines whether the specified form is in this form collection.
bool Contains(string) Determine whether the form with the specified Editor ID is in this form collection.
FormCollection HavingTag(string) Creates a new form collection based on this form collection that contains only forms that have been tagged with the specified text.
void Remove(Form) Remove the specified form from this form collection.
void Remove(string) Remove the form that has the specified Editor ID from this form collection.
void TagAll(string) Tags all forms in this form collection with the specified text.
FormCollection Where(delegate) Creates a new form collection based on this form collection that contains only forms that satisfy the specified predicate.
Extension Methods
Name Description
FormCollection<Aoru> OfAoru() Convers and filters this mixed form collection to a collection of Activation Rule forms.
FormCollection<Flst> OfFlst() Convers and filters this mixed form collection to a collection of Form List forms.
FormCollection<Gdry> OfGdry() Convers and filters this mixed form collection to a collection of God Reys forms.
FormCollection<Glob> OfGlob() Convers and filters this mixed form collection to a collection of Global Variable forms.
FormCollection<Gmst> OfGmst() Convers and filters this mixed form collection to a collection of Game Setting forms.
FormCollection<Imgs> OfImgs() Convers and filters this mixed form collection to a collection of Image Space forms.
FormCollection<Kywd> OfKywd() Convers and filters this mixed form collection to a collection of Keyword forms.
FormCollection<Rfct> OfRfct() Convers and filters this mixed form collection to a collection of Visual Effect forms.
FormCollection<Sndr> OfSndr() Convers and filters this mixed form collection to a collection of Sound forms.
FormCollection<Spgd> OfSpgd() Convers and filters this mixed form collection to a collection of Shader Particle Geometry forms.
FormCollection<Stat> OfStat() Convers and filters this mixed form collection to a collection of Static forms.
FormCollection<Wthr> OfWthr() Convers and filters this mixed form collection to a collection of Weather forms.

Return to: Index