iTextSharp.text.pdf.PdfAnnotation.PdfAnnotation C# (CSharp) 메소드

PdfAnnotation() 공개 메소드

public PdfAnnotation ( PdfWriter writer, float llx, float lly, float urx, float ury, PdfString title, PdfString content ) : System
writer PdfWriter
llx float
lly float
urx float
ury float
title PdfString
content PdfString
리턴 System
        public PdfAnnotation(PdfWriter writer, float llx, float lly, float urx, float ury, PdfString title, PdfString content)
        {
            this.writer = writer;
            Put(PdfName.SUBTYPE, PdfName.TEXT);
            Put(PdfName.T, title);
            Put(PdfName.RECT, new PdfRectangle(llx, lly, urx, ury));
            Put(PdfName.CONTENTS, content);
        }

Same methods

PdfAnnotation::PdfAnnotation ( PdfWriter writer, Rectangle rect ) : System
PdfAnnotation::PdfAnnotation ( PdfWriter writer, float llx, float lly, float urx, float ury, PdfAction action ) : System