GetType - Form

Revision as of 03:00, 10 May 2012 by imported>Fg109 (Created page for GetType)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Form Script

Returns this form's form type.

Syntax

int Function GetType() native

Parameters

None

Return Value

The form type of this form:

  • kNone = 0
  • kTES4 = 1
  • kGroup = 2
  • kGMST = 3
  • kKeyword = 4
  • kLocationRef = 5
  • kAction = 6
  • kTextureSet = 7
  • kMenuIcon = 8
  • kGlobal = 9
  • kClass = 10
  • kFaction = 11
  • kHeadPart = 12
  • kEyes = 13
  • kRace = 14
  • kSound = 15
  • kAcousticSpace = 16
  • kSkill = 17
  • kEffectSetting = 18
  • kScript = 19
  • kLandTexture = 20
  • kEnchantment = 21
  • kSpell = 22
  • kScrollItem = 23
  • kActivator = 24
  • kTalkingActivator = 25
  • kArmor = 26
  • kBook = 27
  • kContainer = 28
  • kDoor = 29
  • kIngredient = 30
  • kLight = 31
  • kMisc = 32
  • kApparatus = 33
  • kStatic = 34
  • kStaticCollection = 35
  • kMovableStatic = 36
  • kGrass = 37
  • kTree = 38
  • kFlora = 39
  • kFurniture = 40
  • kWeapon = 41
  • kAmmo = 42
  • kNPC = 43
  • kLeveledCharacter = 44
  • kKey = 45
  • kPotion = 46
  • kIdleMarker = 47
  • kNote = 48
  • kConstructibleObject = 49
  • kProjectile = 50
  • kHazard = 51
  • kSoulGem = 52
  • kLeveledItem = 53
  • kWeather = 54
  • kClimate = 55
  • kShaderParticleGeometryData = 56
  • kReferenceEffect = 57
  • kRegion = 58
  • kNAVI = 59
  • kCell = 60
  • kReference = 61
  • kCharacter = 62
  • kMissile = 63
  • kArrow = 64
  • kGrenade = 65
  • kBeamProjectile = 66
  • kFlameProjectile = 67
  • kConeProjectile = 68
  • kBarrierProjectile = 69
  • kPHZD = 70
  • kWorldSpace = 71
  • kLand = 72
  • kNavMesh = 73
  • kTLOD = 74
  • kTopic = 75
  • kTopicInfo = 76
  • kQuest = 77
  • kIdle = 78
  • kPackage = 79
  • kCombatStyle = 80
  • kLoadScreen = 81
  • kLeveledSpell = 82
  • kANIO = 83
  • kWater = 84
  • kEffectShader = 85
  • kTOFT = 86
  • kExplosion = 87
  • kDebris = 88
  • kImageSpace = 89
  • kImageSpaceModifier = 90
  • kList = 91
  • kPerk = 92
  • kBodyPartData = 93
  • kAddonNode = 94
  • kActorValueInfo = 95
  • kCameraShot = 96
  • kCameraPath = 97
  • kVoiceType = 98
  • kMaterialType = 99
  • kImpactData = 100
  • kImpactDataSet = 101
  • kARMA = 102
  • kEncounterZone = 103
  • kLocation = 104
  • kMessage = 105
  • kRagdoll = 106
  • kDefaultObject = 107
  • kLightingTemplate = 108
  • kMusicType = 109
  • kFootstep = 110
  • kFootstepSet = 111
  • kStoryBranchNode = 112
  • kStoryQuestNode = 113
  • kStoryEventNode = 114
  • kDialogueBranch = 115
  • kMusicTrack = 116
  • kDLVW = 117
  • kWordOfPower = 118
  • kShout = 119
  • kEquipSlot = 120
  • kRelationship = 121
  • kScene = 122
  • kAssociationType = 123
  • kOutfit = 124
  • kArt = 125
  • kMaterial = 126
  • kMovementType = 127
  • kSoundDescriptor = 128
  • kDualCastData = 129
  • kSoundCategory = 130
  • kSoundOutput = 131
  • kCollisionLayer = 132
  • kColorForm = 133
  • kReverbParam = 134

Examples

; Returns the 27 as the form type of MyBook
int MyType = MyBook.GetType()

See Also