次の方法で共有


DrawingAttributes コンストラクタ (Single)

指定した幅を使用して、DrawingAttributes クラスの新しいインスタンスを初期化します。

名前空間 :  Microsoft.Ink
アセンブリ :  Microsoft.Ink (Microsoft.Ink.dll 内)

構文

'宣言
Public Sub New ( _
    width As Single _
)
'使用
Dim width As Single

Dim instance As New DrawingAttributes(width)
public DrawingAttributes(
    float width
)
public:
DrawingAttributes(
    float width
)
public DrawingAttributes(
    float width
)
public function DrawingAttributes(
    width : float
)

パラメータ

解説

ペンの幅は HIMETRIC 単位です。

ストロークの描画属性を変更する場合は、毎回新しいオブジェクトを作成するのではなく、既存の DrawingAttributes オブジェクトを再利用してみてください。新しい DrawingAttributes オブジェクトを作成すると、DrawingAttributes オブジェクトの有効期間を超えて、Ink オブジェクトに残されたメモリが割り当てられます。

この C# の例では、200 HIMETRIC 単位の Width を使用して、DrawingAttributes クラス theDrawingAttributes の新しいインスタンスを初期化します。

DrawingAttributes theDrawingAttributes = new DrawingAttributes(200);

この Microsoft Visual Basic.NET の例では、200 HIMETRIC 単位の Width を使用して、DrawingAttributes クラス theDrawingAttributes の新しいインスタンスを初期化します。

Dim theDrawingAttributes As New DrawingAttributes(200)

プラットフォーム

Windows Vista

.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。

バージョン情報

.NET Framework

サポート対象 : 3.0

参照

参照

DrawingAttributes クラス

DrawingAttributes メンバ

DrawingAttributes オーバーロード

Microsoft.Ink 名前空間

DrawingAttributes