Font.GetKerning Method

SFML.Net

FontGetKerning Method
Get the kerning offset between two glyphs

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public float GetKerning(
	uint first,
	uint second,
	uint characterSize
)
Public Function GetKerning ( 
	first As UInteger,
	second As UInteger,
	characterSize As UInteger
) As Single
public:
float GetKerning(
	unsigned int first, 
	unsigned int second, 
	unsigned int characterSize
)
member GetKerning : 
        first : uint32 * 
        second : uint32 * 
        characterSize : uint32 -> float32 

Parameters

first
Type: SystemUInt32
Unicode code point of the first character
second
Type: SystemUInt32
Unicode code point of the second character
characterSize
Type: SystemUInt32
Character size

Return Value

Type: Single
Kerning offset, in pixels
See Also