iTextSharp.text.pdf.PdfDestination.PdfDestination C# (CSharp) Метод

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

public PdfDestination ( int type, float left, float bottom, float right, float top ) : System
type int
left float
bottom float
right float
top float
Результат System
        public PdfDestination(int type, float left, float bottom, float right, float top)
            : base(PdfName.FITR)
        {
            Add(new PdfNumber(left));
            Add(new PdfNumber(bottom));
            Add(new PdfNumber(right));
            Add(new PdfNumber(top));
        }

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 top, float zoom ) : System