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

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

public PdfDestination ( String dest ) : System
dest String
Результат System
        public PdfDestination(String dest)
            : base()
        {
            string[] ss = dest.Trim().Split(null);
            if (ss.Length > 0)
                Add(new PdfName(ss[0]));
            for (int k = 1; k < ss.Length; ++k) {
                if (ss[k].Length == 0)
                    continue;
                Add(new PdfNumber(ss[k]));
            }
        }

Same methods

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