Whatever message this page gives is out now! Go check it out!
GetPrinterInfo("printer") |
Parameter | Description |
printer | The name of a printer. An example in Windows is “\\s1001prn02\NTN-2W-HP_BW02”. The default is the default printer for the account where the ColdFusion server is running. Printer names are case sensitive and must be entered exactly as they appear in the System Information page of the ColdFusion Administrator. If you specify an empty string, for example GetPrinterInfo(""), ColdFusion generates an error. Use the following code to retrieve information on the default printer:{{ GetPrinterInfo().}} |
<!--- The following code returns information on the default printer. --->
<cfdump var="#GetPrinterInfo()#">
<!--- The following code returns information on the specified printer. --->
<cfdump var="#GetPrinterInfo('\\S1001prn02\NTN-2W-SHARP01')#">