'Declaration
Public Event DocumentOpening As EventHandler(Of DocumentStreamEventArgs)
'Usage
Dim instance As FlexViewer Dim handler As EventHandler(Of DocumentStreamEventArgs) AddHandler instance.DocumentOpening, handler
public event EventHandler<DocumentStreamEventArgs> DocumentOpening
Event Data
The event handler receives an argument of type DocumentStreamEventArgs containing data related to this event. The following DocumentStreamEventArgs properties provide information specific to this event.
Property | Description |
---|---|
AllowedTypes | Gets the allowed document file types. |
Stream | Gets or sets the stream of a document file. |
See Also