menu

Xamarin.Android

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class OnPdfPasswordEventArgs - Xamarin.Android API Reference | Syncfusion

    Show / Hide Table of Contents

    Class OnPdfPasswordEventArgs

    Arguments of Pdf Password.

    Inheritance
    System.Object
    OnPdfPasswordEventArgs
    Namespace: Syncfusion.Pdf.Parsing
    Assembly: Syncfusion.Pdf.Portable.dll
    Syntax
    public class OnPdfPasswordEventArgs : Object
    Examples
    // Creates a new document
     PdfLoadedDocument lDoc = new PdfLoadedDocument("Input.pdf");
    // Subscribe the On pdf password event 
    lDoc.OnPdfPassword += LDoc_OnPdfPassword;
    //Access the attachments
    PdfAttachmentCollection attachment=lDoc.Attachments;
    //Save the document
    lDoc.save("Ouput.pdf");        
    // On Pdf Password event handler
    void LDoc_OnPdfPassword(object sender, OnPdfPasswordEventArgs args)
    {
     args.UserPassword = "syncfusion";
    }

    Properties

    UserPassword

    Gets or sets a value of pdf password.

    Declaration
    public string UserPassword { get; set; }
    Property Value
    Type
    System.String
    Examples
    // Creates a new document
     PdfLoadedDocument lDoc = new PdfLoadedDocument("Input.pdf");
    // Subscribe the On pdf password event 
    lDoc.OnPdfPassword += LDoc_OnPdfPassword;
    //Access the attachments
    PdfAttachmentCollection attachment=lDoc.Attachments;
    //Save the document
    lDoc.save("Ouput.pdf");        
    // On Pdf Password event handler
    void LDoc_OnPdfPassword(object sender, OnPdfPasswordEventArgs args)
    {
     args.UserPassword = "syncfusion";
    }
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved