Click or drag to resize
FileRequest Class
FileRequest class is used to receive and save the document submitted by AceoffixCtrl.
Inheritance Hierarchy
SystemObject
  AceoffixFileRequest

Namespace: Aceoffix
Assembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntax
public sealed class FileRequest

The FileRequest type exposes the following members.

Constructors
  NameDescription
Public methodFileRequest
Initializes a new instance of the FileRequest class.
Top
Methods
  NameDescription
Public methodCode exampleClose
Returns a success message to AceoffixCtrl.
Public methodCode exampleGetFormField
Gets the value with the specified name in the form fields of the page with AceoffixCtrl.
Public methodCode exampleSaveToFile
Saves the current document to a disk file.
Public methodCode exampleShowPage
Prompts a custom dialog box to show the saving result.
Top
Properties
  NameDescription
Public propertyCode exampleCustomSaveResult
Sets the custom saving result defined by developer.
Public propertyCode exampleDocumentText
Gets the plain text of the document without any format.
Public propertyCode exampleFileBytes
Returns an array of the bytes in the file submitted by AceoffixCtrl.
Public propertyCode exampleFileExtName
Gets the file name extension of the file.
Public propertyCode exampleFileName
Gets the file name of the file submitted by AceoffixCtrl.
Public propertyCode exampleFileSize
Gets the size of the file, in bytes.
Public propertyLocalFileExtName
Gets the file name extension of the client's local file submitted by AceoffixCtrl.
Public propertyLocalFileName
Gets the file name of the client's local file submitted by the AceoffixCtrl.
Top
Remarks

FileRequest class is used to receive and save the document submitted by AceoffixCtrl.

The FileRequest object must be created and used in the server page specified by SaveFilePage.

Refer to the full code example in the SaveToFile(String) method topic to learn how to save document.

See Also