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

GotoLocalPage() публичный статический Метод

public static GotoLocalPage ( String dest, bool isName ) : PdfAction
dest String
isName bool
Результат PdfAction
        public static PdfAction GotoLocalPage(String dest, bool isName)
        {
            PdfAction action = new PdfAction();
            action.Put(PdfName.S, PdfName.GOTO);
            if (isName)
                action.Put(PdfName.D, new PdfName(dest));
            else
                action.Put(PdfName.D, new PdfString(dest, null));
            return action;
        }

Same methods

PdfAction::GotoLocalPage ( int page, PdfDestination dest, PdfWriter writer ) : PdfAction