Property TableEntryReference
TableEntryReference
Declaration
public TableEntryReference TableEntryReference { get; set; }
Property Value
Type | Description |
---|---|
TableEntryReference |
Examples
This example shows the 2 ways a reference can be set.
var localizedString = new LocalizedString();
// Table Entry Reference can be set with the name of the Key
localizedString.TableEntryReference = "Exit Game";
// Or the Key Id
localizedString.TableEntryReference = 342423423;