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

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

public static GotoEmbedded ( String filename, PdfTargetDictionary target, PdfObject dest, bool newWindow ) : PdfAction
filename String
target iTextSharp.text.pdf.collection.PdfTargetDictionary
dest PdfObject
newWindow bool
Результат PdfAction
        public static PdfAction GotoEmbedded(String filename, PdfTargetDictionary target, PdfObject dest, bool newWindow)
        {
            PdfAction action = new PdfAction();
            action.Put(PdfName.S, PdfName.GOTOE);
            action.Put(PdfName.T, target);
            action.Put(PdfName.D, dest);
            action.Put(PdfName.NEWWINDOW, new PdfBoolean(newWindow));
            if (filename != null) {
                action.Put(PdfName.F, new PdfString(filename));
            }
            return action;
        }

Same methods

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