PrinterSettings.IsDirectPrintingSupported Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a value indicating whether the printer supports printing an image file.
Overloads
IsDirectPrintingSupported(ImageFormat) |
Returns a value indicating whether the printer supports printing the specified image format. |
IsDirectPrintingSupported(Image) |
Gets a value indicating whether the printer supports printing the specified image file. |
IsDirectPrintingSupported(ImageFormat)
- Source:
- PrinterSettings.cs
- Source:
- PrinterSettings.cs
- Source:
- PrinterSettings.cs
- Source:
- PrinterSettings.cs
- Source:
- PrinterSettings.cs
Returns a value indicating whether the printer supports printing the specified image format.
public:
bool IsDirectPrintingSupported(System::Drawing::Imaging::ImageFormat ^ imageFormat);
public bool IsDirectPrintingSupported (System.Drawing.Imaging.ImageFormat imageFormat);
member this.IsDirectPrintingSupported : System.Drawing.Imaging.ImageFormat -> bool
Public Function IsDirectPrintingSupported (imageFormat As ImageFormat) As Boolean
Parameters
- imageFormat
- ImageFormat
An ImageFormat to print.
Returns
true
if the printer supports printing the specified image format; otherwise, false
.
Applies to
IsDirectPrintingSupported(Image)
- Source:
- PrinterSettings.cs
- Source:
- PrinterSettings.cs
- Source:
- PrinterSettings.cs
- Source:
- PrinterSettings.cs
- Source:
- PrinterSettings.cs
Gets a value indicating whether the printer supports printing the specified image file.
public:
bool IsDirectPrintingSupported(System::Drawing::Image ^ image);
public bool IsDirectPrintingSupported (System.Drawing.Image image);
member this.IsDirectPrintingSupported : System.Drawing.Image -> bool
Public Function IsDirectPrintingSupported (image As Image) As Boolean
Parameters
- image
- Image
The image to print.
Returns
true
if the printer supports printing the specified image; otherwise, false
.