<p class="Paragraph">FileNumber: Any integer expression that defines the file to write into.</p>
<p class="Paragraph">Position: For relative files (random access files) the number of the record to be written.</p>
<p class="Paragraph">For binary files (binary access) the byte position in the file at which to begin writing.</p>
<p class="Paragraph">Variable: Name of the variable to write to the file.</p>
<p class="Paragraph">Note for relative files: If the contents of this variable do not match the length of a record specified in the <span class="T1">Len</span> clause of the <span class="T1">Open</span> statement, the space from the end of the new written data to the next record is padded with the existing data in the file.</p>
<p class="Paragraph">Note for binary files: The contents of the variables is written to the specified position, and the file pointer is set directly after the last byte, without any space between records.</p>