AppendPSToFile

Description

Copies the area from the PASSPORT presentation space and appends it to a file.

Syntax

ret = AppendPSToFile (FileName, StartRow, StartColumn, EndRow, EndColumn)

Parameters
ret Integer,output
  0 = OK
  Non zero = Error
   
FileName String, input
  The name of the file that the text is appended to.
   
StartRow Integer, input
  The starting row position in the PASSPORT screen.
   
StartColumn Integer, input
  The starting column position in the PASSPORT screen.
   
EndRow Integer, input
  The ending row position in the PASSPORT screen.
   
EndColumn Integer,Input
  The ending column position in the PASSPORT screen.

 

Remarks

The PASSPORT presentation space is the same as the PASSPORT terminal emulation screen area.

This is a PASSPORT function.

Example

Sub ZMain()
AppendPSToFile "C:/Test.txt",1,1,24,80
End Sub