PrinterSettings.IsDirectPrintingSupported 方法

定义

返回一个值,该值指示打印机是否支持打印图像文件。

重载

IsDirectPrintingSupported(ImageFormat)

返回一个值,该值指示打印机是否支持打印指定的图像格式。

IsDirectPrintingSupported(Image)

获取一个值,该值指示打印机是否支持打印指定的图像文件。

IsDirectPrintingSupported(ImageFormat)

Source:
PrinterSettings.cs
Source:
PrinterSettings.cs
Source:
PrinterSettings.cs

返回一个值,该值指示打印机是否支持打印指定的图像格式。

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

参数

imageFormat
ImageFormat

要打印的 ImageFormat

返回

若打印机支持打印指定的图像格式,则为 true;否则为 false

适用于

IsDirectPrintingSupported(Image)

Source:
PrinterSettings.cs
Source:
PrinterSettings.cs
Source:
PrinterSettings.cs

获取一个值,该值指示打印机是否支持打印指定的图像文件。

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

参数

image
Image

要打印的图像。

返回

若打印机支持打印指定的图像,则为 true;否则为 false

适用于