iTextSharp.text.pdf.parser.TextRenderInfo.GetText C# (CSharp) Метод

GetText() публичный Метод

public GetText ( ) : String
Результат String
        public String GetText()
        {
            return text;
        }

Usage Example

 /// Captures text using a simplified algorithm for inserting hard returns and spaces
 ///             @param   renderInfo  render info
 public virtual void RenderText(TextRenderInfo renderInfo)
 {
     _blocks.Add(new TextBlock
     {
         Text = renderInfo.GetText(),
         TopLeft = renderInfo.GetBaseline().GetStartPoint(),
         BottomRight = renderInfo.GetBaseline().GetEndPoint()
     });
 }
All Usage Examples Of iTextSharp.text.pdf.parser.TextRenderInfo::GetText