次の方法で共有


方法: ペンを作成する

この例では、Pen オブジェクトを作成します。

System::Drawing::Pen^ myPen;
myPen = gcnew System::Drawing::Pen(System::Drawing::Color::Tomato);
System.Drawing.Pen myPen;
myPen = new System.Drawing.Pen(System.Drawing.Color.Tomato);
Dim myPen As System.Drawing.Pen
myPen = New System.Drawing.Pen(System.Drawing.Color.Tomato)

信頼性の高いプログラミング

Pen オブジェクトなどのシステム リソースを使用するオブジェクトの使用が完了したら、そこで Dispose を呼び出す必要があります。

関連項目