/// <summary>
        /// Initializes a new instance of ESCommon.Rtf.RtfParagraphCollection class.
        /// </summary>
        /// <param name="paragraph">Parent paragraph.</param>
        internal RtfParagraphCollection(RtfParagraphBase parent)
        {
            list = new List <RtfParagraph>();

            Parent = parent;
        }
コード例 #2
0
        /// <summary>
        /// Initializes a new instance of ESCommon.Rtf.RtfParagraphContentsCollection class.
        /// </summary>
        /// <param name="owner">Owning paragraph.</param>
        internal RtfParagraphContentsCollection(RtfParagraphBase owner)
        {
            list = new List <RtfParagraphContentBase>();

            Paragraph = owner;
        }