Show / Hide Table of Contents

Class KismetStringTableLibrary

Kismet String Table Library

Inheritance
System.Object
UObject
BlueprintFunctionLibrary
KismetStringTableLibrary
Inherited Members
UObject.TransientPackage
UObject.CastTo<T>(UObject)
UObject.CastTo(UObject, Type)
UObject.RemoveObject(UObject)
UObject.MakeObjectArrayField<T>(NativeArray*)
UObject.NotImplemented<T>()
UObject.Construct()
UObject.GetHashCode()
UObject.GetName()
UObject.ToString()
UObject.Name
UObject._None
UObject.None
UObject.ObjPointer
UObject.LoadObjectFromClass(Class, UObject, String, String, LoadFlags, PackageMap, Boolean)
UObject.LoadClass(Class, UObject, String, String, LoadFlags, PackageMap)
UObject.GetPropertyFor<T>(Name)
UObject.ExecuteUbergraph
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: UE4.Engine
Assembly: UE4DotNet.dll
Syntax
public class KismetStringTableLibrary : BlueprintFunctionLibrary

Properties

| Improve this Doc View Source

DefaultObject

Get UE4 Default Object for this Class

Declaration
public static KismetStringTableLibrary DefaultObject { get; }
Property Value
Type Description
KismetStringTableLibrary
| Improve this Doc View Source

StaticClass

Get UE4 Class

Declaration
public static Class StaticClass { get; }
Property Value
Type Description
Class

Methods

| Improve this Doc View Source

GetKeysFromStringTable(Name)

Returns an array of all keys within the given string table

Declaration
public static IReadOnlyCollection<string> GetKeysFromStringTable(Name TableId)
Parameters
Type Name Description
Name TableId
Returns
Type Description
System.Collections.Generic.IReadOnlyCollection<System.String>
| Improve this Doc View Source

GetMetaDataIdsFromStringTableEntry(Name, String)

Returns an array of all meta-data IDs within the given string table entry

Declaration
public static IReadOnlyCollection<Name> GetMetaDataIdsFromStringTableEntry(Name TableId, string Key)
Parameters
Type Name Description
Name TableId
System.String Key
Returns
Type Description
System.Collections.Generic.IReadOnlyCollection<Name>
| Improve this Doc View Source

GetRegisteredStringTables()

Returns an array of all registered string table IDs

Declaration
public static IReadOnlyCollection<Name> GetRegisteredStringTables()
Returns
Type Description
System.Collections.Generic.IReadOnlyCollection<Name>
| Improve this Doc View Source

GetTableEntryMetaData(Name, String, Name)

Returns the specified meta-data of the given string table entry (or an empty string).

Declaration
public static string GetTableEntryMetaData(Name TableId, string Key, Name MetaDataId)
Parameters
Type Name Description
Name TableId
System.String Key
Name MetaDataId
Returns
Type Description
System.String
| Improve this Doc View Source

GetTableEntrySourceString(Name, String)

Returns the source string of the given string table entry (or an empty string).

Declaration
public static string GetTableEntrySourceString(Name TableId, string Key)
Parameters
Type Name Description
Name TableId
System.String Key
Returns
Type Description
System.String
| Improve this Doc View Source

GetTableNamespace(Name)

Returns the namespace of the given string table.

Declaration
public static string GetTableNamespace(Name TableId)
Parameters
Type Name Description
Name TableId
Returns
Type Description
System.String
| Improve this Doc View Source

IsRegisteredTableEntry(Name, String)

Returns true if the given table ID corresponds to a registered string table, and that table has.

Declaration
public static bool IsRegisteredTableEntry(Name TableId, string Key)
Parameters
Type Name Description
Name TableId
System.String Key
Returns
Type Description
System.Boolean
| Improve this Doc View Source

IsRegisteredTableId(Name)

Returns true if the given table ID corresponds to a registered string table.

Declaration
public static bool IsRegisteredTableId(Name TableId)
Parameters
Type Name Description
Name TableId
Returns
Type Description
System.Boolean
| Improve this Doc View Source

New(UObject, Name)

Spawn an object of this class

Declaration
public static KismetStringTableLibrary New(UObject obj = null, Name name = default(Name))
Parameters
Type Name Description
UObject obj
Name name
Returns
Type Description
KismetStringTableLibrary

Operators

| Improve this Doc View Source

Implicit(IntPtr to KismetStringTableLibrary)

Convert from IntPtr to UObject

Declaration
public static implicit operator KismetStringTableLibrary(IntPtr p)
Parameters
Type Name Description
System.IntPtr p
Returns
Type Description
KismetStringTableLibrary
  • Improve this Doc
  • View Source
Back to top Generated by DocFX