예제 #1
0
        /// <summary>
        /// Adds a new chapter.
        /// </summary>
        /// <returns></returns>
        public IChapter AddNew()
        {
            IChapter newChapter = new XmlChapter(m_oDictionary, Parent.GetChildParentClass(this));

            Append(newChapter);
            Initialize();
            return(newChapter);
        }
예제 #2
0
 internal XmlChapterSettings(XmlChapter chapter, ParentClass parent)
 {
     this.chapter = chapter;
     this.parent = parent;
 }
예제 #3
0
 /// <summary>
 /// Adds a new chapter.
 /// </summary>
 /// <returns></returns>
 public IChapter AddNew()
 {
     IChapter newChapter = new XmlChapter(m_oDictionary, Parent.GetChildParentClass(this));
     Append(newChapter);
     Initialize();
     return newChapter;
 }