
Gets a snapshot of the currently loaded document for further processing.
[C#]
public byte[] Document { get; }
[Visual Basic]
Public ReadOnly Property Document() As Byte()
For a given string path and SaveDocumentEventArgs e you can save the document depending on its file format: For FileFormat.RichTextFormat System.IO.File.WriteAllText(path, new System.Text.ASCIIEncoding().GetString(e.Document)) can be used and System.IO.File.WriteAllBytes(path, e.Document) for all other formats. The document's file format is specified in DocumentServer.Web.DocumentViewer.SaveDocumentEventArgs.FileFormat.
Read only.