Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

SharedTableData.GetKey

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public string GetKey(long id);

Parameters

Parameter Description
id The id to look up.

Returns

string The key text, or null when the id is absent.

Description

Returns the key text for a stable id.

Returns null when the id is 0 or not present.

Additional resources: SharedTableData.GetId, SharedTableData.GetEntry

<para>Resolve a stable id back to its key text.</para>

using Unity.Localization;
using UnityEngine;

namespace Unity.Localization.Samples { public class SharedTableDataGetKeyExample { public void Run() { var sharedData = ScriptableObject.CreateInstance<SharedTableData>(); long id = sharedData.AddKey("GREETING").Id;

string key = sharedData.GetKey(id); // GREETING Debug.Log(key); } } }