- Found in:
- F4SE
Description
Wiki Description
Removes all Form in the array from tagged search.
Documentation Comment
Removes all forms in the array from tagged search
Caveats
CK Wiki - Notes
None
Parameters
Examples
{remove 3 items tagged for search}
MiscObject Property PowerRelayCoil Auto Const Mandatory
MiscObject Property VacuumTube Auto Const Mandatory
MiscObject Property Gear Auto Const Mandatory
Event OnInit()
Form[] tagged = new Form[0]
tagged.Add(PowerRelayCoil)
tagged.Add(VacuumTube)
tagged.Add(Gear)
FavoritesManager.RemoveTaggedForms(tagged)
Debug.Trace("Favorites manager removed " + tagged.Length + " tagged items for search.")
EndEventAuto-Generated Example
Form[] myFormArray__forms
FavoritesManager.RemoveTaggedForms(myFormArray__forms)Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
