Class FormFieldsImportedEventArgs
Provides event data for the form fields imported in the SfPdfViewer2 component.
Inheritance
System.Object
FormFieldsImportedEventArgs
Namespace: Syncfusion.Blazor.SfPdfViewer
Assembly: Syncfusion.Blazor.SfPdfViewer.dll
Syntax
public class FormFieldsImportedEventArgs : Object
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()