Background for Fallout 4
Member of the FavoritesManager script
voidfunctionRemoveTaggedForms(Form[]forms)NativeGlobal

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

Form[]forms

CK Wiki Description

The Form to remove from tagged search.


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.")
EndEvent

Auto-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

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.