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

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

public static GotoEmbedded ( String filename, PdfTargetDictionary target, String dest, bool isName, bool newWindow ) : PdfAction
filename String
target iTextSharp.text.pdf.collection.PdfTargetDictionary
dest String
isName bool
newWindow bool
Результат PdfAction
        public static PdfAction GotoEmbedded(String filename, PdfTargetDictionary target, String dest, bool isName, bool newWindow)
        {
            if (isName)
                return GotoEmbedded(filename, target, new PdfName(dest), newWindow);
            else
                return GotoEmbedded(filename, target, new PdfString(dest, null), newWindow);
        }

Same methods

PdfAction::GotoEmbedded ( String filename, PdfTargetDictionary target, PdfObject dest, bool newWindow ) : PdfAction