FlushContent() публичный Метод

public FlushContent ( ) : void
Результат void
Пример #1
0
 /**
  * @since   iText 2.0.8
  * @see com.lowagie.text.LargeElement#flushContent()
  */
 virtual public void FlushContent()
 {
     NotAddedYet = false;
     title       = null;
     for (int k = 0; k < Count; ++k)
     {
         IElement element = this[k];
         if (element is Section)
         {
             Section s = (Section)element;
             if (!s.ElementComplete && Count == 1)
             {
                 s.FlushContent();
                 return;
             }
             else
             {
                 s.AddedCompletely = true;
             }
         }
         this.RemoveAt(k);
         --k;
     }
 }