Background for Fallout 4
Member of the FavoritesManager script
boolfunctionIsTaggedForm(FormakForm)NativeGlobal

Description

Wiki Description

Returns whether the specified Form is tagged for search.

Documentation Comment

Returns whether the specified form is tagged for search


Caveats

CK Wiki - Notes

None


Parameters

FormakForm

CK Wiki Description

The Form to check for a search tag.


Examples

{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

Auto-Generated Example

Form myForm__akForm

bool returnedValue = FavoritesManager.IsTaggedForm(myForm__akForm)

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.