File.Print

File.Print ( 

string Filename )

Example 1

File.Print("AutoPlay\\Docs\\catalogue.pdf");

Prints "AutoPlay\Docs\catalogue.pdf" with the user's default viewer for PDF files (probably Acrobat).

Example 2

File.Print("AutoPlay\\Docs\\instructions.doc");

Prints "AutoPlay\Docs\instructions.doc" with the user's default viewer for DOC files (probably Word).

Example 3

-- Print the specified file.
File.Print("AutoPlay\\Docs\\MyFile.pdf");

--Check to see if an error occurred.
error = Application.GetLastError();

-- If an error occurred, display the error message.
if (error ~= 0) then
    Dialog.Message("Error", _tblErrorMessages[error], MB_OK, MB_ICONEXCLAMATION);
end

Prints the file "MyFile.pdf" with the user's default viewer for PDF files (probably Acrobat). If the action fails, the error code message is displayed in a dialog message.

See also:  Related Actions