Comment : créer un stylet
Mise à jour : novembre 2007
Cet exemple crée un objet Pen.
Exemple
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);
Programmation fiable
Lorsque vous avez terminé, appelez Dispose sur les objets consommant des ressources système, tels que Pen.
Voir aussi
Concepts
Stylets, lignes et rectangles dans GDI+