本文整理汇总了VB.NET中System.Drawing.Printing.PrinterSettings.SupportsColor属性的典型用法代码示例。如果您正苦于以下问题:VB.NET PrinterSettings.SupportsColor属性的具体用法?VB.NET PrinterSettings.SupportsColor怎么用?VB.NET PrinterSettings.SupportsColor使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Drawing.Printing.PrinterSettings
的用法示例。
在下文中一共展示了PrinterSettings.SupportsColor属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: MyPrintQueryPageSettingsEvent
Private Sub MyButtonPrint_OnClick(ByVal sender As Object, ByVal e As System.EventArgs)
' Set the printer name and ensure it is valid. If not, provide a message to the user.
printDoc.PrinterSettings.PrinterName = "\\mynetworkprinter"
If printDoc.PrinterSettings.IsValid Then
' If the printer supports printing in color, then override the printer's default behavior.
if printDoc.PrinterSettings.SupportsColor then
' Set the page default's to not print in color.
printDoc.DefaultPageSettings.Color = False
End If
' Provide a friendly name, set the page number, and print the document.
printDoc.DocumentName = "My Presentation"
currentPageNumber = 1
printDoc.Print()
Else
MessageBox.Show("Printer is not valid")
End If
End Sub
Private Sub MyPrintQueryPageSettingsEvent(ByVal sender As Object, ByVal e As QueryPageSettingsEventArgs)
' Determines if the printer supports printing in color.
If printDoc.PrinterSettings.SupportsColor Then
' If the printer supports color printing, use color.
If currentPageNumber = 1 Then
e.PageSettings.Color = True
End If
End If
End Sub
示例2: Client
' 导入命名空间
Imports System
Imports System.Drawing.Printing
Module Client
Sub Main()
Dim pd As PrintDocument = New PrintDocument()
Dim pg As PageSettings = pd.DefaultPageSettings
Dim ps As PrinterSettings = pg.PrinterSettings
Console.WriteLine("Is printer valid = " + ps.IsValid.ToString())
Console.WriteLine("Can Duplex = " + ps.IsValid.ToString())
Console.WriteLine("Num copies = " + ps.Copies.ToString())
Console.WriteLine("Max Copies = " + ps.MaximumCopies.ToString())
Console.WriteLine("Max Page = " + ps.MaximumPage.ToString())
Console.WriteLine("Min Page = " + ps.MinimumPage.ToString())
Console.WriteLine("Supports Color = " + ps.SupportsColor.ToString())
End Sub
End Module