iTextSharp.text.pdf.parser.PdfContentStreamProcessor.BeginMarkedContent C# (CSharp) Method

BeginMarkedContent() private method

private BeginMarkedContent ( PdfName tag, PdfDictionary dict ) : void
tag PdfName
dict PdfDictionary
return void
        private void BeginMarkedContent(PdfName tag, PdfDictionary dict)
        {
            markedContentStack.Push(new MarkedContentInfo(tag, dict));
        }

Usage Example

            public void Invoke(PdfContentStreamProcessor processor,
                               PdfLiteral oper, List <PdfObject> operands)
            {
                PdfObject properties = operands[1];

                processor.BeginMarkedContent((PdfName)operands[0], GetPropertiesDictionary(properties, processor.resources));
            }
All Usage Examples Of iTextSharp.text.pdf.parser.PdfContentStreamProcessor::BeginMarkedContent