Como criar uma caneta

Este exemplo cria um Pen objeto.

Exemplo

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)

Programação robusta

Depois de terminar de usar objetos que consomem recursos do sistema, como Pen objetos, você deve chamá-los Dispose .

Confira também