alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class FormFieldsImportedEventArgs

    Provides event data for the form fields imported in the SfPdfViewer2 component.

    Inheritance
    object
    FormFieldsImportedEventArgs
    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 FormFieldsImportedEventArgs
    Remarks

    The FormFieldsImportedEventArgs class does not expose any specific properties. It is used to signal the completion of the form fields import operation in the SfPdfViewer2 component.

    Examples
    <SfPdfViewer2 @ref="Viewer" DocumentPath="@DocumentPath" Height="100%" Width="100%">
        <PdfViewerEvents FormFieldsImported="@OnFormFieldsImported"></PdfViewerEvents>
    </SfPdfViewer2>
    
    @code {
    void OnFormFieldsImported(FormFieldsImportedEventArgs args)
    {
        // Handle actions after form fields have been imported
        Console.WriteLine("Form fields have been imported.");
    }
    }

    Constructors

    FormFieldsImportedEventArgs()

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