ControlPaint::DrawBorder3D Method (Graphics^, Int32, Int32, Int32, Int32, Border3DStyle)
.NET Framework (current version)
Draws a three-dimensional style border with the specified style, on the specified graphics surface, and within the specified bounds on a control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: static void DrawBorder3D( Graphics^ graphics, int x, int y, int width, int height, Border3DStyle style )
Parameters
- graphics
-
Type:
System.Drawing::Graphics^
The Graphics to draw on.
- x
-
Type:
System::Int32
The x-coordinate of the top left of the border rectangle.
- y
-
Type:
System::Int32
The y-coordinate of the top left of the border rectangle.
- width
-
Type:
System::Int32
The width of the border rectangle.
- height
-
Type:
System::Int32
The height of the border rectangle.
- style
-
Type:
System.Windows.Forms::Border3DStyle
One of the Border3DStyle values that specifies the style of the border.
The following code example demonstrates the use of one of the DrawBorder3D methods. To run this example, paste the following code in a form that imports the System.Windows.Forms and System.Drawing namespaces. Ensure the form's Paint event is associated with the event handler in this example.
// Handle the Form's Paint event to draw a 3D three-dimensional // raised border just inside the border of the frame. void Form1_Paint( Object^ /*sender*/, PaintEventArgs^ e ) { Rectangle borderRectangle = this->ClientRectangle; borderRectangle.Inflate( -10, -10 ); ControlPaint::DrawBorder3D( e->Graphics, borderRectangle, Border3DStyle::Raised ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: