Esempio n. 1
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Adds a note to the notes list.
 /// </summary>
 /// <param name="note">The note.</param>
 /// <returns>true if the note was added successfully. Otherwise, false.</returns>
 /// ------------------------------------------------------------------------------------
 public bool AddNote(TMXNote note)
 {
     return(TMXNote.AddNote(note, _notes));
 }
Esempio n. 2
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Adds a note to the notes list.
 /// </summary>
 /// ------------------------------------------------------------------------------------
 public bool AddNote(string lang, string text)
 {
     return(TMXNote.AddNote(lang, text, _notes));
 }