'Declaration
Public Event DocumentSaving As EventHandler(Of SaveDocumentStreamEventArgs)
'Usage
Dim instance As FlexViewer Dim handler As EventHandler(Of SaveDocumentStreamEventArgs) AddHandler instance.DocumentSaving, handler
public event EventHandler<SaveDocumentStreamEventArgs> DocumentSaving
Event Data
The event handler receives an argument of type SaveDocumentStreamEventArgs containing data related to this event. The following SaveDocumentStreamEventArgs properties provide information specific to this event.
Property | Description |
---|---|
FilePath | Gets or sets the full file path. |
PageRange | Gets or sets the range. |
SaveAsImageOptions | Gets or sets the options to save as images. |
See Also