共用方式為


PrintForm.DocumentName 屬性

取得或設定要在列印文件時顯示的文件名稱 (例如,在列印狀態對話方塊中或在印表機佇列中)。

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

語法

'宣告
<BrowsableAttribute(True)> _
Public Property DocumentName As String
[BrowsableAttribute(true)]
public string DocumentName { get; set; }
[BrowsableAttribute(true)]
public:
property String^ DocumentName {
    String^ get ();
    void set (String^ value);
}
[<BrowsableAttribute(true)>]
member DocumentName : string with get, set
function get DocumentName () : String 
function set DocumentName (value : String)

屬性值

類型:String
AString列印文件時要顯示。預設值是「文件」。

備註

DocumentName屬性不會指定要列印的檔案。 相反地,您可以指定藉由呼叫列印輸出Print方法。

範例

下列範例示範如何使用DocumentName屬性顯示在列印時的文件名稱。 此範例中您需要PrintForm名 PrintForm1 為表單上的元件。

' Print to a printer. 
PrintForm1.PrintAction = Printing.PrintAction.PrintToPrinter
' Assign a document name.
PrintForm1.DocumentName = "Quarterly Results Graph"
' Send to the printer.
PrintForm1.Print()

.NET Framework 安全性

請參閱

參考

PrintForm 類別

Microsoft.VisualBasic.PowerPacks.Printing 命名空間

其他資源

PrintForm 元件 (Visual Basic)

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

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

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

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

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