次の方法で共有


Printer.FontStrikethru プロパティ

更新 : 2007 年 11 月

取り消し線フォント スタイルを取得または設定します。

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

構文

'宣言
Public Property FontStrikethru As Boolean
'使用
Dim instance As Printer
Dim value As Boolean

value = instance.FontStrikethru

instance.FontStrikethru = value
public bool FontStrikethru { get; set; }
public:
property bool FontStrikethru {
    bool get ();
    void set (bool value);
}
public function get FontStrikethru () : boolean
public function set FontStrikethru (value : boolean)

プロパティ値

型 : System.Boolean

Boolean を返します。

解説

Printer オブジェクトの場合、FontStrikeThru プロパティを設定しても、オブジェクトに既に描画されたテキストは影響を受けません。

メモ :

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

FontStrikeThru プロパティの設定方法を次の例に示します。

Dim pr As New Printer
pr.Print("This is a regular font")
pr.FontStrikeThru = True
pr.Print("This is a strikethrough font")
pr.EndDoc()

アクセス許可

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

参照

参照

Printer クラス

Printer メンバ

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

その他の技術情報

Printer Compatibility Library

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

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