Font.GetGlyph Method

SFML.Net

FontGetGlyph Method
Get a glyph in the font

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Glyph GetGlyph(
	uint codePoint,
	uint characterSize,
	bool bold
)
Public Function GetGlyph ( 
	codePoint As UInteger,
	characterSize As UInteger,
	bold As Boolean
) As Glyph
public:
Glyph GetGlyph(
	unsigned int codePoint, 
	unsigned int characterSize, 
	bool bold
)
member GetGlyph : 
        codePoint : uint32 * 
        characterSize : uint32 * 
        bold : bool -> Glyph 

Parameters

codePoint
Type: SystemUInt32
Unicode code point of the character to get
characterSize
Type: SystemUInt32
Character size
bold
Type: SystemBoolean
Retrieve the bold version or the regular one?

Return Value

Type: Glyph
The glyph corresponding to the character
See Also