iTextSharp.text.Annotation.Process C# (CSharp) Method

Process() public method

Processes the element by adding it (or the different parts) to an IElementListener.
public Process ( IElementListener listener ) : bool
listener IElementListener an IElementListener
return bool
        public bool Process(IElementListener listener)
        {
            try {
                return listener.Add(this);
            }
            catch (DocumentException) {
                return false;
            }
        }