iTextSharp.text.pdf.PdfOutline.SetDestinationPage C# (CSharp) Method

SetDestinationPage() public method

public SetDestinationPage ( PdfIndirectReference pageReference ) : bool
pageReference PdfIndirectReference
return bool
        public bool SetDestinationPage(PdfIndirectReference pageReference)
        {
            if (destination == null) {
                return false;
            }
            return destination.AddPage(pageReference);
        }