次の方法で共有


Printer.FontTransparent プロパティ

Printer のオブジェクトの背景グラフィックスは、テキスト文字の後に出力されるかどうかを示す値を取得または設定します。

名前空間:  Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6
アセンブリ:  Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)

構文

'宣言
Public Property FontTransparent As Boolean
public bool FontTransparent { get; set; }
public:
property bool FontTransparent {
    bool get ();
    void set (bool value);
}
member FontTransparent : bool with get, set
function get FontTransparent () : boolean
function set FontTransparent (value : boolean)

プロパティ値

型 : System.Boolean
Boolean を返します。

解説

FontTransparent のプロパティが trueに設定した場合、テキストは、現在の印刷場所 (CurrentXCurrentY)のすべてのグラフィックの上に出力されます。背景グラフィックスは読み取り可能の可能性があるのと同じ色のテキストの背景のグラフィックが表示され、テキストを表示します。

FontTransparent のプロパティが falseに設定した場合、テキストはテキストの背景のグラフィックの領域を覆う白い背景に出力されます。

[!メモ]

Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 名前空間の関数とオブジェクトは、Visual Basic 6.0 から Visual Basic へのアップグレード ツールで使用するために用意されています。ほとんどの場合、これらの関数とオブジェクトは、.NET Framework の他の名前空間にある機能と重複しています。Visual Basic 6.0 のコード モデルが .NET Framework の実装と著しく異なる場合を除いて、これらの関数およびオブジェクトを使用する必要はありません。

次の例では、ページのイメージ上のテキストを印刷する方法を示します。プロジェクトに Image1 という名前のイメージ リソースを追加したことを前提としています。

Dim Printer As New Printer
Printer.PaintPicture(My.Resources.Image1, 0, 0)
' Set the print position to location of the image.
Printer.CurrentX = 0
Printer.CurrentY = 0
Printer.FontTransparent = True
Printer.Print("FontTransparent is True " & vbCrLf)
Printer.FontTransparent = False
Printer.Print("FontTransparent is False")
Printer.EndDoc()

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

Printer クラス

Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 名前空間

その他の技術情報

Printer Compatibility Library

方法: Printer Compatibility Library を使用してアップグレード エラーを修正する (Visual Basic)

Printer Compatibility Library を参照するアプリケーションの配置