Exemplo n.º 1
0
 /// <summary>
 /// Remove the specified footnote if present.
 /// </summary>
 /// <param name="pos"></param>
 /// <returns></returns>
 public bool RemoveFootnote(int pos)
 {
     if (ctFootnotes.SizeOfFootnoteArray >= pos - 1)
     {
         ctFootnotes.RemoveFootnote(pos);
         listFootnote.RemoveAt(pos);
         return(true);
     }
     else
     {
         return(false);
     }
 }