iTextSharp.text.DocWriter.Add C# (CSharp) Method

Add() public method

Signals that an Element was added to the Document.
This method should be overriden in the specific DocWriter classes derived from this abstract class.
public Add ( IElement element ) : bool
element IElement
return bool
        public virtual bool Add(IElement element)
        {
            return false;
        }