Environment.DrawTextOutlined Method

Draws a text on the Environment's client area.
Public Sub DrawTextOutlined( _ 
ByVal x As Integer, _ 
ByVal y As Integer, _ 
ByVal text As String, _ 
ByVal textFont As Font, _ 
ByVal textColor As Color, _ 
ByVal outlineColor As Color, _ 
ByVal outlineThickness As Single, _ 
ByVal textAlign As ContentAlignment
)
This language is not supported or no code example is available.
public void DrawTextOutlined( 
int x
int y
string text
Font textFont
Color textColor
Color outlineColor
float outlineThickness
ContentAlignment textAlign 
)
This language is not supported or no code example is available.

Parameters

x
int

The text's x coordinate

y
int

The text's y coordinate (from the bottom of the viewport)

text
string

The text string to draw

textFont
Font

The text font

textColor
Color

The text color

outlineColor
Color

The outline color

outlineThickness
float

The outline thickness

textAlign
ContentAlignment

The text alignment

Remarks
 
For better performances use GetTextOutlinedImage, create the texture and draw it directly.

.NET Framework

Supported in: 4.5, 4.6, 4.7

In this article

Definition