Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This example changes the color of a pre-existing Pen object
Example
myPen->Color = System::Drawing::Color::PeachPuff;
myPen.Color = System.Drawing.Color.PeachPuff;
myPen.Color = System.Drawing.Color.PeachPuff
Compiling the Code
This example requires:
- A Pen object named
myPen
.
Robust Programming
You should call Dispose on objects that consume system resources (such as Pen objects) after you are finished using them.
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET Desktop feedback