Class LocalizationTableCollection.Row<TEntry>
Represents a single Key and its localized values when using GetRowEnumerator.
Namespace: UnityEditor.Localization
Syntax
public class Row<TEntry>
where TEntry : TableEntry
Type Parameters
Name | Description |
---|---|
TEntry |
Properties
KeyEntry
The Key for the current row.
Declaration
public SharedTableData.SharedTableEntry KeyEntry { get; }
Property Value
Type | Description |
---|---|
SharedTableData.SharedTableEntry |
TableEntries
The entries taken from all the tables for the current KeyEntry. The value may be null, such as when the table does not have a value for the current key.
Declaration
public TEntry[] TableEntries { get; }
Property Value
Type | Description |
---|---|
TEntry[] |
TableEntriesReference
The LocaleIdentifier for each table value in TableEntries. The order of the tables is guaranteed not to change.
Declaration
public LocaleIdentifier[] TableEntriesReference { get; }
Property Value
Type | Description |
---|---|
LocaleIdentifier[] |