Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

artOutfile

artOutfile( 
t_name 
t_mode 
x_len 
t_break 
t_cont 
t_begCom 
t_endCom 
t_tab 
t_comments 
) 
=> x_handle

Description

Opens the named file. The first argument is mandatory. The other arguments keep their default values if they are not set.

Arguments

t_name

Name of the file.

t_mode

Mode in which to open the file, either w or a. The default value is w.

x_len

Maximum number of chars before each new line. The default value is internal default.

t_break

Break characters, where breaking the line is legal. For example,"\t])". The default value is null.

t_cont

Continuation convention. For example,  "\\\n" or "\n+". The default value is null.

t_begCom

Comment convention. For example,  ";" or "slash-asterisk". The default value is null.

t_endCom

Complement of beginComment. For example, "\n" or asterisk-slash.

t_tab

Indicates if a tab should be replaced with a blank. The default value is 1.

t_comments

Indicates if comments can be ignored. The default value is 1.

Value Returned

x_handle

The named file

Examples

fHandle = artOutfile( "aFile" "a" )

Return to top
 ⠀
X