Name
Print, PrintLine Procedures
Class
Microsoft.VisualBasic.FileSystem
Syntax
Print(filenumber, [outputlist( )]) PrintLine(filenumber, [outputlist( )])
-
filenumber Use: Required
Data Type: Integer
Any valid file number.
-
outputlist Use: Optional
Type: Parameter Array
A comma-separated list of expressions to output to a file.
outputlistcan be either a scalar variable, a list of comma-delimited expressions, or a parameter array. Its comma-delimited expressions or parameter array can include the following:-
Spc(n) Use: Optional
Insert
nspace characters before expression.-
Tab(n) Use: Optional
Position the insertion point either at the next print zone (by omitting
n) or at column number (n).-
expression Use: Optional
Data Type: Any
The data expression to output.
Description
Outputs formatted data to a disk file opened for Append or Output.
Rules at a Glance
PrintandPrintLineare identical, except thatPrintLineadvances to the next line after printing.The
Tab(n)argument does not actually insert any tab characters (Chr(9)); instead, it fills the space from the end of the last expression to columnn(or to the start of the next print zone) with space characters.The
Printprocedure uses the locale settings of the current system to format dates, times, and numbers, using the correct separators.outputlistcan be either a comma-separated list of expressions or a parameter array.
Example
The following code shows how to use the Print procedure to write to a file using both a comma-separated ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access