public string PageBody() { Paragraph nextParagraph; nextParagraph = new Paragraph (myChapter.MyNovel); return nextParagraph.ToString (); }
public string PageBreak() { Sentence nextSentence; Paragraph nextParagraph; string text = ""; nextSentence = new Sentence (myChapter.MyNovel); nextParagraph = new Paragraph (myChapter.MyNovel); text = ("\n*page_break"); if (nextSentence.WordCount <= 5) { text = (text + " " + nextSentence); } text = (text + "\n\n" + nextParagraph.ToString()); return text; }