alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class FormFieldsExportedEventArgs

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

    Inheritance
    object
    FormFieldsExportedEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.SfPdfViewer
    Assembly: Syncfusion.Blazor.SfPdfViewer.dll
    Syntax
    public class FormFieldsExportedEventArgs
    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()
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved