EnableInternetPrinting Property

Summary
Enables or disables Internet printing.
Syntax
C#
C++/CLI
public bool EnableInternetPrinting { get; set; } 
public: 
property bool EnableInternetPrinting { 
   bool get(); 
   void set (    bool ); 
} 

Property Value

true to enable Internet printing; false, otherwise.

Remarks

Enable Internet printing in a running application to receive printed jobs from clients.

Example
C#
using Leadtools.Printer; 
using Leadtools; 
 
 
public void EnableInternetPrintingExamples() 
{ 
   networkPrinter = new Printer("Test LEADTOOLS Printer"); 
   // Set Internet printing enable 
   networkPrinter.EnableInternetPrinting = true; 
 
   //Check Internet printing state 
   bool bInternetPrintingEnabled = networkPrinter.EnableInternetPrinting; 
   if (bInternetPrintingEnabled) 
      MessageBox.Show("Internet Printing Enabled"); 
   else 
      MessageBox.Show("Internet Printing Disabled"); 
} 
Requirements

Target Platforms

See Also

Reference

Printer Class

Printer Members

Help Version 22.0.2023.1.25
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Printer Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.