示例#1
0
 //  As was agreed with HtmlParser, this method is called exclusively
 //  for skipping tag information. Since we have to show the text "nicely",
 //  we subst large amount of blanks with just one for aesteics.
 public void  IncrementOffset(int count)
 {
     for (int i = 0; i < count; i++)
     {
         AccumulatedBody.Append(' ');
     }
 }
示例#2
0
 public void   AddDocumentFragment(int docID, string text, string sectionName)
 {
     if (!String.IsNullOrEmpty(text))
     {
         AccumulatedBody.Append(text);
     }
 }
示例#3
0
 public void   AddDocumentFragment(int docID, string text, string sectionName)
 {
     if (!String.IsNullOrEmpty(text))
     {
         AnalyzeSectionBorder(sectionName);
         AccumulatedBody.Append(text);
     }
     ResId = docID;
 }