FirstLineWidth
Returns the width of the first text line of the given multi-lined text when printed with this TextRenderer. The width is in pixels. You can pass either single or multi-lined text to this function but it'll always return the width of the first text line. Notice that like any other function of TextRenderer this function takes a reference to a string so you have to construct a string variable of the text before passing it to this function. Examples TextRenderer renderer( ... );
String text = "First line\nSecond line\nThird line"; // Get the width of the first line of the text ("First line") // int textWidth = renderer.FirstLineWidth( text ); Other functions of the class TextRenderer
Questions about FirstLineWidth? Click here. |