iTextSharp.tool.xml.XMLWorker.Text C# (CSharp) Method

Text() public method

public Text ( String text ) : void
text String
return void
        public void Text(String text)
        {
            IWorkerContext ctx = GetLocalWC();
            if (null != ctx.GetCurrentTag()) {
                if (text.Length > 0) {
                    IPipeline wp = rootpPipe;
                    ProcessObject po = new ProcessObject();
                    try {
                        while (null != (wp = wp.Content(ctx, ctx.GetCurrentTag(), text, po)))
                            ;
                    } catch (PipelineException e) {
                        throw new RuntimeWorkerException(e);
                    }
                }
            }
        }