menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class FormFieldsExportedEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class FormFieldsExportedEventArgs

    Provides event data for the form field exported event in the SfPdfViewer2

    Inheritance
    System.Object
    FormFieldsExportedEventArgs
    Namespace: Syncfusion.Blazor.SfPdfViewer
    Assembly: Syncfusion.Blazor.SfPdfViewer.dll
    Syntax
    public class FormFieldsExportedEventArgs : Object
    Remarks

    The FormFieldsExportedEventArgs class contains details about the exported form fields, enabling developers to retrieve relevant information after the export operation is completed.

    Examples
    <SfPdfViewer2 @ref="Viewer" Height="100%" Width="100%">
        <PdfViewerEvents FormFieldsExported="@OnFormFieldsExported"></PdfViewerEvents>
    </SfPdfViewer2>
    
    @code {
    void OnFormFieldsExported(FormFieldsExportedEventArgs args)
    {
        // Handle the exported form fields
        Console.WriteLine("Form fields have been successfully exported.");
        // Implement additional logic if required
    }
    }

    Constructors

    FormFieldsExportedEventArgs()

    Declaration
    public FormFieldsExportedEventArgs()
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved