/// <summary> /// Moves all the letters from this font to another font /// </summary> /// <param name="target">The target font that the letters should be moved to</param> public void MoveLetters(SubtitleFont target) { foreach (SubtitleLetter letter in letters) { target.AddLetter(letter); } letters.Clear(); changed = true; }
public void AddLetter(SubtitleLetter l) { userFont.AddLetter(l); }
/// <summary> /// Moves all the letters from this font to another font /// </summary> /// <param name="target">The target font that the letters should be moved to</param> public void MoveLetters(SubtitleFont target) { foreach (SubtitleLetter letter in letters) target.AddLetter(letter); letters.Clear(); changed = true; }