InfoConnect for Airlines
ScratchPadSaveAs Method


The full path of the file to which Scratch Pad contents are saved.
Saves Scratch Pad contents to the specified file.
Syntax
'Declaration
 
Function ScratchPadSaveAs( _
   ByVal filePath As String _
) As ReturnCode
'Usage
 
Dim instance As IProductivity
Dim filePath As String
Dim value As ReturnCode
 
value = instance.ScratchPadSaveAs(filePath)
ReturnCode ScratchPadSaveAs( 
   string filePath
)

Parameters

filePath
The full path of the file to which Scratch Pad contents are saved.

Return Value

ReturnCode.Success if the save succeeded, ReturnCode.Error if it failed.
Remarks
If filePath exists, the file is overwritten.
See Also