Click or drag to resize
Ab4d.SharpEngine logo

VectorFontFactoryGetBoundingRectangle Method

Returns the start or top-left position (as Vector3) and size (as Vector2) of the rectangle that contains the specified text.

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public (Vector3 topLeftPosition, Vector2 textSize) GetBoundingRectangle(
	string text,
	Vector3 textPosition,
	TextPositionTypes positionType,
	Vector3 textDirection,
	Vector3 upDirection,
	float fontSize
)

Parameters

text  String
text to render (can have multiple lines)
textPosition  Vector3
position as Vector3
positionType  TextPositionTypes
type of text position; note that TextPositionTypes also defines the Baseline value
textDirection  Vector3
text direction as Vector3
upDirection  Vector3
text up direction as Vector3
fontSize  Single
font size

Return Value

ValueTupleVector3, Vector2
start or top-left position (as Vector3) and size (as Vector2) of the rectangle that contains the specified text
See Also