iTextSharp.text.pdf.parser.TextRenderInfo.TextRenderInfo C# (CSharp) Method

TextRenderInfo() private method

private TextRenderInfo ( String text, GraphicsState gs, Matrix textMatrix, ICollection markedContentInfo ) : System
text String
gs GraphicsState
textMatrix Matrix
markedContentInfo ICollection
return System
        internal TextRenderInfo(String text, GraphicsState gs, Matrix textMatrix, ICollection markedContentInfo)
        {
            this.text = text;
            this.textToUserSpaceTransformMatrix = textMatrix.Multiply(gs.ctm);
            this.gs = gs;
            this.markedContentInfos = new List<MarkedContentInfo>();
            foreach (MarkedContentInfo m in markedContentInfo) {
                this.markedContentInfos.Add(m);
            }
        }

Same methods

TextRenderInfo::TextRenderInfo ( TextRenderInfo parent, int charIndex, float horizontalOffset ) : System