Example #1
0
        /// <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;
        }
Example #2
0
 public void AddLetter(SubtitleLetter l)
 {
     userFont.AddLetter(l);
 }
Example #3
0
        /// <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;
        }