Printer.Orientation プロパティ
ドキュメントが垂直方向または横向き印刷に出力されるかどうかを示す値を取得または設定します。
名前空間: Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6
アセンブリ: Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
Public Property Orientation As Short
public short Orientation { get; set; }
public:
property short Orientation {
short get ();
void set (short value);
}
member Orientation : int16 with get, set
function get Orientation () : short
function set Orientation (value : short)
プロパティ値
型 : System.Int16
Short を返します。
解説
Print のメソッドをダイヤルした後にこのプロパティを設定すると、ランタイム例外が発生します。
次の表は Orientation のプロパティに対して有効な PrinterObjectConstants 値を示します。
定数 |
値 |
Description |
---|---|---|
vbPRORPortrait |
1 |
ドキュメントは垂直に出力されます。ページの高さ、幅より大きい。 |
vbPRORLandscape |
2 |
ドキュメントは水平方向に出力されます。ページの幅、高さを超える。 |
[!メモ]
Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 名前空間の関数とオブジェクトは、Visual Basic 6.0 から Visual Basic へのアップグレード ツールで使用するために用意されています。ほとんどの場合、これらの関数とオブジェクトは、.NET Framework の他の名前空間にある機能と重複しています。Visual Basic 6.0 のコード モデルが .NET Framework の実装と著しく異なる場合を除いて、これらの関数およびオブジェクトを使用する必要はありません。
例
Orientation プロパティの設定方法を次の例に示します。この例では、適切な方向を決定するために、ドキュメントの次元が使用されます。
Dim Printer As New Printer
If Printer.Height > Printer.Width Then
Printer.Orientation = vbPRORPortrait
Else
Printer.Orientation = vbPRORLandscape
End If
Printer.Print("Hello")
Printer.EndDoc()
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 名前空間
その他の技術情報
方法: Printer Compatibility Library を使用してアップグレード エラーを修正する (Visual Basic)