IsTaggedForm - FavoritesManager

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: FavoritesManager Script
Requires F4SE version 0.6.5 or higher.

Returns whether the specified Form is tagged for search.

Syntax[edit | edit source]

bool Function IsTaggedForm(Form akForm) Global Native

Parameters[edit | edit source]

  • akForm: The Form to check for a search tag.

Return Value[edit | edit source]

Returns true if the given Form is tagged for search.

Examples[edit | edit source]

{check item for search tagging}
MiscObject Property PowerRelayCoil Auto Const Mandatory

Event OnInit()
    If (FavoritesManager.IsTaggedForm(PowerRelayCoil))
        Debug.Trace("The PowerRelayCoil is tagged for search.")
    Else
        Debug.Trace("The PowerRelayCoil is NOT tagged for search.")
    EndIf
EndEvent

Notes[edit | edit source]

None

See Also[edit | edit source]