iTextSharp.text.pdf.PdfAction.CreateHide C# (CSharp) Method

CreateHide() static private method

static private CreateHide ( PdfObject obj, bool hide ) : PdfAction
obj PdfObject
hide bool
return PdfAction
        internal static PdfAction CreateHide(PdfObject obj, bool hide)
        {
            PdfAction action = new PdfAction();
            action.Put(PdfName.S, PdfName.HIDE);
            action.Put(PdfName.T, obj);
            if (!hide)
                action.Put(PdfName.H, PdfBoolean.PDFFALSE);
            return action;
        }

Same methods

PdfAction::CreateHide ( Object names, bool hide ) : PdfAction
PdfAction::CreateHide ( PdfAnnotation annot, bool hide ) : PdfAction
PdfAction::CreateHide ( string name, bool hide ) : PdfAction