方法 : ペンを作成する
Pen オブジェクトを作成する例を次に示します。
使用例
Dim myPen As System.Drawing.Pen
myPen = New System.Drawing.Pen(System.Drawing.Color.Tomato)
System.Drawing.Pen myPen;
myPen = new System.Drawing.Pen(System.Drawing.Color.Tomato);
System::Drawing::Pen^ myPen;
myPen = gcnew System::Drawing::Pen(System::Drawing::Color::Tomato);
信頼性の高いプログラミング
Pen オブジェクトなど、システム リソースを消費するオブジェクトについては、使用後に Dispose を呼び出す必要があります。