Difference between revisions of "HasKeyword - Form"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Rhavlovick
m (1 revision: Clobber re-import by Henning)
 
imported>DiemCarpe
Line 18: Line 18:
== Examples ==
== Examples ==
<source lang="papyrus">
<source lang="papyrus">
Scriptname ExampleScript
Keyword Property DoomKeywordProperty auto
; Does this object have a doom keyword?
; Does this object have a doom keyword?
if (NiceSwordProperty.HasKeyword(DoomKeywordProperty))
if (NiceSwordProperty.HasKeyword(DoomKeywordProperty))
; Note: You do not need to state the write the function's syntax in your script
; to be able to use the function.
   Debug.Trace("The nice sword is a doom sword")
   Debug.Trace("The nice sword is a doom sword")
endIf
endIf

Revision as of 14:26, 16 September 2012

Member of: Form Script

Checks to see if the specified keyword is attached to this form.

Syntax

bool Function HasKeyword(Keyword akKeyword) native

Parameters

  • akKeyword: The Keyword to query for.

Return Value

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

Examples

Scriptname ExampleScript

Keyword Property DoomKeywordProperty auto

; Does this object have a doom keyword?
if (NiceSwordProperty.HasKeyword(DoomKeywordProperty))
; Note: You do not need to state the write the function's syntax in your script
; to be able to use the function.
  Debug.Trace("The nice sword is a doom sword")
endIf

See Also