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

InitOutline() приватный Метод

private InitOutline ( PdfOutline parent, string title, bool open ) : void
parent PdfOutline
title string
open bool
Результат void
        internal void InitOutline(PdfOutline parent, string title, bool open)
        {
            this.open = open;
            this.parent = parent;
            writer = parent.writer;
            Put(PdfName.TITLE, new PdfString(title, PdfObject.TEXT_UNICODE));
            parent.AddKid(this);
            if (destination != null && !destination.HasPage()) // bugfix Finn Bock
                SetDestinationPage(writer.CurrentPage);
        }