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()