iTextSharp.text.pdf.PdfDestination.PdfDestination C# (CSharp) Method

PdfDestination() public method

public PdfDestination ( int type, float left, float top, float zoom ) : System
type int
left float
top float
zoom float
return System
        public PdfDestination(int type, float left, float top, float zoom)
            : base(PdfName.XYZ)
        {
            if (left < 0)
                Add(PdfNull.PDFNULL);
            else
                Add(new PdfNumber(left));
            if (top < 0)
                Add(PdfNull.PDFNULL);
            else
                Add(new PdfNumber(top));
            Add(new PdfNumber(zoom));
        }

Same methods

PdfDestination::PdfDestination ( String dest ) : System
PdfDestination::PdfDestination ( int type ) : System
PdfDestination::PdfDestination ( int type, float parameter ) : System
PdfDestination::PdfDestination ( int type, float left, float bottom, float right, float top ) : System