Text Constructor (String, Font, UInt32)

SFML.Net

Text Constructor (String, Font, UInt32)
Construct the text from a string, font and size

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Text(
	string str,
	Font font,
	uint characterSize
)
Public Sub New ( 
	str As String,
	font As Font,
	characterSize As UInteger
)
public:
Text(
	String^ str, 
	Font^ font, 
	unsigned int characterSize
)
new : 
        str : string * 
        font : Font * 
        characterSize : uint32 -> Text

Parameters

str
Type: SystemString
String to display
font
Type: SFML.GraphicsFont
Font to use
characterSize
Type: SystemUInt32
Base characters size
See Also