Xamarin.Forms | ComponentOne
C1.Xamarin.Forms.Viewer Assembly / C1.Xamarin.Forms.Viewer Namespace / FlexViewer Class / DocumentSaving Event


In This Topic
    DocumentSaving Event
    In This Topic
    Occurs when a document stream is being saved.
    Syntax
    '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.

    PropertyDescription
    Gets or sets the full file path.  
    Gets or sets the range.  
    Gets or sets the options to save as images.  
    See Also