Click here to Skip to main content
15,861,168 members
Articles / Programming Languages / C#

RTF Document Constructor Library

Rate me:
Please Sign up or sign in to vote.
4.95/5 (57 votes)
16 Aug 2010CPOL4 min read 209.2K   5.2K   106  
Create Rich Text Format documents programatically.
using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;

namespace ESCommon.Rtf
{
    /// <summary>
    /// Represents a collection of ESCommon.Rtf.RtfFont in the header of a RTF document.
    /// </summary>
    public class RtfFontCollection: ICollection<RtfFont>, IEnumerable<RtfFont>
    {
        private List<RtfFont> list;

        /// <summary>
        /// Gets or sets ESCommon.Rtf.RtfFont at specified location.
        /// </summary>
        /// <param name="index">A zero-based index of ESCommon.Rtf.RtfFont to get or set.</param>
        public RtfFont this[int index]
        {
            get { return list[index]; }
            set { list[index] = value; }
        }

        /// <summary>
        /// Gets the number of items in the collection.
        /// </summary>
        public int Count
        {
            get { return list.Count; }
        }


        /// <summary>
        /// Initializes a new instance of ESCommon.Rtf.RtfFontCollection class.
        /// </summary>
        internal RtfFontCollection()
        {
            list = new List<RtfFont>();
        }


        /// <summary>
        /// Adds the specified ESCommon.Rtf.RtfFont to the collection.
        /// </summary>
        public void Add(RtfFont rtfFont)
        {
            list.Add(rtfFont);
        }

        /// <summary>
        /// Adds the specified ESCommon.Rtf.RtfFont objects to the collection.
        /// </summary>
        public void AddRange(RtfFont[] fonts)
        {
            foreach (RtfFont font in fonts)
            {
                Add(font);
            }
        }

        /// <summary>
        /// Clears all the contents of the collection.
        /// </summary>
        public void Clear()
        {
            list.Clear();
        }

        /// <summary>
        /// Determines if an element is in the collection.
        /// </summary>
        /// <param name="rtfFont">An instance of ESCommon.Rtf.RtfFont to locate in the collection.</param>
        public bool Contains(RtfFont rtfFont)
        {
            return list.Contains(rtfFont);
        }

        /// <summary>
        /// Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
        /// </summary>
        /// <param name="array">The one-dimensional System.Array that is the destination of the elements.</param>
        /// <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
        public void CopyTo(RtfFont[] array, int arrayIndex)
        {
            list.CopyTo(array, arrayIndex);
        }

        /// <summary>
        /// Removes specified font from the collection.
        /// </summary>
        /// <param name="rtfFont">Font to remove.</param>
        public bool Remove(RtfFont rtfFont)
        {
            return list.Remove(rtfFont);
        }


        bool ICollection<RtfFont>.IsReadOnly
        {
            get { return false; }
        }

        IEnumerator<RtfFont> IEnumerable<RtfFont>.GetEnumerator()
        {
            return list.GetEnumerator();
        }

        IEnumerator IEnumerable.GetEnumerator()
        {
            return list.GetEnumerator();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Energoservice
Russian Federation Russian Federation
Dmitry lives in Arkhangelsk, Russia. He has developed C# applications since 2007.

Comments and Discussions