- Found in:
- F4SE
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.")
EndIfAuto-Generated Example
Form[] returnedValue = FavoritesManager.GetTaggedForms()Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
