Class LoadEventArgs
This event arguments provides the necessary information about document load event.
Implements
System.IEquatable<LoadEventArgs>
Inherited Members
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class LoadEventArgs : BaseEventArgs<LoadEventArgs>, IEquatable<LoadEventArgs>
Constructors
LoadEventArgs()
Declaration
public LoadEventArgs()
Properties
DocumentName
Document name to be loaded into PDF Viewer.
Declaration
public string DocumentName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PageData
Gets the pagecount, size for each page of the loaded PDF document.
Declaration
public DocumentInfo PageData { get; }
Property Value
Type | Description |
---|---|
DocumentInfo |
Implements
System.IEquatable<>