HasKeywordInFormList - Form

Member of: Form Script

Checks to see if any of the keywords in the form list is attached to this form. If the form list contains no keywords, returns false.

SyntaxEdit

bool Function HasKeywordInFormList(FormList akKeywordList) native

ParametersEdit

Return ValueEdit

Whether this form has any of the specified keywords or not. If the form doesn't support keywords, it will always return false.

ExamplesEdit

; Does this object have any of the explosive keywords?
if (Dynamite.HasKeywordInFormList(ExplosiveKeywords))
  Debug.Trace("The dynamite is explosive!")
endIf

See AlsoEdit