- Found in:
- SKSE
Description
Wiki Description
Returns the Nth keyword assigned to this form. (This function requires SKSE)
Documentation Comment
returns the keyword at the specified index
Caveats
Parameters
intindex
CK Wiki Description
which keyword to get. 0 will return the first, 1 the second, etc.
Examples
;;;
Keyword[] Property StoredKeywords Auto
Function StoreKeywordsOf(Form MyForm)
int Count = MyForm.GetNumKeywords()
int index
while (index < Count)
StoredKeywords[index] = MyForm.GetNthKeyword(index)
index += 1
endwhile
EndFunctionAuto-Generated Example
int myInt__index
Keyword returnedValue = myForm__toCallFunctionOn.GetNthKeyword(myInt__index)