Difference between revisions of "GetFavorites - FavoritesManager"
Jump to navigation
Jump to search
imported>Qazaaq (added f4se member) |
imported>Qazaaq m (Scrivener07 moved page GetFavorites - FavoritesManager to F4SE:GetFavorites - FavoritesManager) |
(No difference)
|
Revision as of 09:11, 22 April 2018
F4SE Member of: FavoritesManager Script
Requires F4SE version 0.6.5 or higher.
Returns all 12 favorites which may contain none entries.
Syntax
Form[] Function GetFavorites() Global Native
Return Value
Returns a Form array of all 12 favorited slots. Empty favorite slots will be returned as none entries.
Examples
{For each favorite form}
Form[] favorites = FavoritesManager.GetFavorites()
If (favorites)
int index = 0
While (index < favorites.Length)
Debug.Trace("Favorited item at index " + index + " is " + favorites[index])
index += 1
EndWhile
Else
Debug.Trace("There are no favorite items.")
EndIf
Notes
None