GetName - Form

From the CreationKit Wiki
Revision as of 09:55, 14 May 2012 by imported>Sagitarius22 (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Form Script Returns the name of the passed form. (This function requires SKSE) == Syn...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

SKSE Member of: Form Script

Returns the name of the passed form. (This function requires SKSE)

Syntax

Form Function GetName(form BaseObject) native

Parameters

  • BaseObject: The base object we want the name.

Return Value

  • The name of the form as a string.

Examples

; Obtain Bob's name and show a message using it.
String BobName = Bob.GetBaseObject().GetName()
Debug.MessageBox("My name's " +BobName)

See Also