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
A String 、ドキュメントの印刷中に表示します。既定値は "document" です。
解説
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 セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks.Printing 名前空間
その他の技術情報
PrintForm コンポーネント (Visual Basic)
方法: PrintForm コンポーネントを使用してフォームを印刷する (Visual Basic)
方法: フォームのクライアント領域を印刷する (Visual Basic)
方法: フォームのクライアント領域と非クライアント領域を印刷する (Visual Basic)