Interface INoteCollection
Holds a collection of INote.
Namespace: UnityEditor.Localization.Plugins.XLIFF.Common
Syntax
public interface INoteCollection
Properties
NoteCount
Declaration
int NoteCount { get; }
Property Value
Type | Description |
---|---|
Int32 |
Methods
AddNewNote()
Declaration
INote AddNewNote()
Returns
Type | Description |
---|---|
INote |
AddNote(INote)
Declaration
void AddNote(INote note)
Parameters
Type | Name | Description |
---|---|---|
INote | note |
GetNote(Int32)
Declaration
INote GetNote(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index |
Returns
Type | Description |
---|---|
INote |
RemoveNote(INote)
Declaration
void RemoveNote(INote note)
Parameters
Type | Name | Description |
---|---|---|
INote | note |