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

Description

Wiki Description

Returns all Form that are tagged for search.

Documentation Comment

Returns all forms that are tagged for search


Caveats

CK Wiki - Notes

None


Examples

Form[] tagged = FavoritesManager.GetTaggedForms()
Debug.Trace("There are " + tagged.Length +  " items tagged for search.")
{For each tagged form}
Form[] tagged = FavoritesManager.GetTaggedForms()
If (tagged)
    int index = 0
    While (index < tagged.Length)
        Debug.Trace("Tagged item at index " + index + " is " + tagged[index])
        index += 1
    EndWhile
Else
    Debug.Trace("There are no items tagged for search.")
EndIf

Auto-Generated Example

Form[] returnedValue = FavoritesManager.GetTaggedForms()

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.