共用方式為


PrintForm.PrinterSettings 屬性

取得或設定PrinterSettings物件您可以用來指定印表機的各種屬性。

命名空間:  Microsoft.VisualBasic.PowerPacks.Printing
組件:  Microsoft.VisualBasic.PowerPacks.Vs (在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

語法

'宣告
<BrowsableAttribute(False)> _
Public Property PrinterSettings As PrinterSettings
[BrowsableAttribute(false)]
public PrinterSettings PrinterSettings { get; set; }
[BrowsableAttribute(false)]
public:
property PrinterSettings^ PrinterSettings {
    PrinterSettings^ get ();
    void set (PrinterSettings^ value);
}
[<BrowsableAttribute(false)>]
member PrinterSettings : PrinterSettings with get, set
function get PrinterSettings () : PrinterSettings 
function set PrinterSettings (value : PrinterSettings)

屬性值

類型:PrinterSettings
傳回 PrinterSettings 物件。

備註

所傳回的設定PrinterSettings會公開給使用者的相同設定列印對話方塊。

您可以使用,以指定數個印表機設定PrinterSettings屬性。 例如,使用Copies屬性來指定要列印的份數。 使用PrinterName屬性來指定使用,並使用印表機PrintRange屬性來指定要列印的頁面範圍。

注意事項注意事項

若要讓使用者選取的設定,您可能想要使用PrintDialog元件,即可顯示標準列印對話方塊中,然後再指派PrinterSettings屬性值設PrinterSettings屬性。

範例

下列程式碼範例示範如何使用PrinterSettings屬性來設定的列印,以及檢查指定的印表機是否為有效的份數。 此範例中您需要PrintForm名 PrintForm1 為表單上的元件。

PrintForm1.PrinterSettings.Copies = 2
If PrintForm1.PrinterSettings.IsValid Then
    PrintForm1.Print()
End If

.NET Framework 安全性

請參閱

參考

PrintForm 類別

Microsoft.VisualBasic.PowerPacks.Printing 命名空間

其他資源

PrintForm 元件 (Visual Basic)

如何:使用 PrintForm 元件列印表單 (Visual Basic)

如何:列印表單的工作區 (Visual Basic)

如何:列印表單的工作區和非工作區 (Visual Basic)

如何:列印可捲動的表單 (Visual Basic)

部署參考 PrintForm 元件的應用程式 (Visual Basic)