Border3DStyle Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the style of a three-dimensional border.
public enum class Border3DStyle
[System.Runtime.InteropServices.ComVisible(true)]
public enum Border3DStyle
public enum Border3DStyle
[<System.Runtime.InteropServices.ComVisible(true)>]
type Border3DStyle =
type Border3DStyle =
Public Enum Border3DStyle
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
RaisedOuter | 1 | The border has a raised outer edge and no inner edge. |
SunkenOuter | 2 | The border has a sunken outer edge and no inner edge. |
RaisedInner | 4 | The border has a raised inner edge and no outer edge. |
Raised | 5 | The border has raised inner and outer edges. |
Etched | 6 | The inner and outer edges of the border have an etched appearance. |
SunkenInner | 8 | The border has a sunken inner edge and no outer edge. |
Bump | 9 | The inner and outer edges of the border have a raised appearance. |
Sunken | 10 | The border has sunken inner and outer edges. |
Adjust | 8192 | The border is drawn outside the specified rectangle, preserving the dimensions of the rectangle for drawing. |
Flat | 16394 | The border has no three-dimensional effects. |
Examples
The following code example demonstrates the use of the ControlPaint.DrawBorder3D method and the Border3DStyle enumeration. 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-handling method 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 );
}
// Handle the Form's Paint event to draw a 3D three-dimensional
// raised border just inside the border of the frame.
private void Form1_Paint(object sender, PaintEventArgs e)
{
Rectangle borderRectangle = this.ClientRectangle;
borderRectangle.Inflate(-10, -10);
ControlPaint.DrawBorder3D(e.Graphics, borderRectangle,
Border3DStyle.Raised);
}
' Handle the Form's Paint event to draw a 3D three-dimensional
' raised border just inside the border of the frame.
Private Sub Form1_Paint(ByVal sender As Object, _
ByVal e As PaintEventArgs) Handles MyBase.Paint
Dim borderRectangle As Rectangle = Me.ClientRectangle
borderRectangle.Inflate(-10, -10)
ControlPaint.DrawBorder3D(e.Graphics, borderRectangle, _
Border3DStyle.Raised)
End Sub
Remarks
Use the members of this enumeration when calling the DrawBorder3D method of the ControlPaint class.