getTextWidth: Difference between revisions
Jump to navigation
Jump to search
(link to available fonts) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 8: | Line 8: | ||
|gr2= Strings | |gr2= Strings | ||
|descr= Returns estimated width of the text based on [[FXY_File_Format#Available_Fonts|font type]] and size. Similar to [[ctrlTextWidth]] but | |descr= Returns estimated width of the text based on [[FXY_File_Format#Available_Fonts|font type]] and size. Similar to [[ctrlTextWidth]] but does not require a control and can be used to estimate text width for any control including buttons. Result does not include left and right margins (hardcoded at 0.008 each). | ||
{{Feature|informative|This command always uses unicode (see also [[forceUnicode]]).}} | |||
|s1= text [[getTextWidth]] [font, size] | |s1= text [[getTextWidth]] [font, size] | ||
|p1= text: [[String]] - text string to measure | |p1= text: [[String]] - text string to measure | ||
|p2 | |||
|p2= font: [[String]] - [[FXY_File_Format#Available_Fonts|font type]] | |||
| | |||
|p3= size: [[Number]] - font size | |||
|r1= [[Number]] | |r1= [[Number]] | ||
|x1= <code>_textWidth = "Hello World" [[getTextWidth]] ["PuristaMedium", 0.03];</code> | |x1= <code>_textWidth = "Hello World" [[getTextWidth]] ["PuristaMedium", 0.03];</code> | ||
|x2= <code>_textWidthInclMargins = ("Hello World" [[getTextWidth]] ["PuristaMedium", 0.03]) + 0.016;</code> | |x2= <code>_textWidthInclMargins = ("Hello World" [[getTextWidth]] ["PuristaMedium", 0.03]) + 0.016;</code> | ||
|x3= <code>[[private]] _ctrl = [[findDisplay]] 46 [[ctrlCreate]] ["RscText", -1]; | |||
|x3= <code>{{Color|purple|#define MARGINS 0.0016}} | |||
[[private]] _ctrl = [[findDisplay]] 46 [[ctrlCreate]] ["RscText", -1]; | |||
_ctrl [[ctrlSetText]] "TestString"; | _ctrl [[ctrlSetText]] "TestString"; | ||
_ctrl [[ctrlSetFont]] "PuristaMedium"; | _ctrl [[ctrlSetFont]] "PuristaMedium"; | ||
_ctrl [[ctrlSetFontHeight]] 0.04; | _ctrl [[ctrlSetFontHeight]] 0.04; | ||
[[ctrlTextWidth]] _ctrl == ("TestString" [[getTextWidth]] ["PuristaMedium", 0.04]) + | [[ctrlTextWidth]] _ctrl == ("TestString" [[getTextWidth]] ["PuristaMedium", 0.04]) + {{Color|purple|MARGINS}}; {{cc|true}}</code> | ||
|seealso= [[ctrlTextWidth]] | |seealso= [[ctrlTextWidth]] | ||
}} | }} | ||
{{Note | |||
|user= R3vo | |||
|timestamp= 20201028221000 | |||
|text= When working with multiline controls [[ctrlTextWidth]] or [[getTextWidth]] will not return a proper value since the text will be treated as one long line.<br> | |||
'''Solution (Execute in [[Eden Editor]]):''' | |||
<code>[[disableSerialization]]; | |||
[[private]] _display = [[findDisplay]] 313 [[createDisplay]] "RscDisplayEmpty"; | |||
[[private]] _edit = _display [[ctrlCreate]] ["RscEditMulti", -1]; | |||
_edit [[ctrlSetPosition]] [0,0,1,1]; | |||
_edit [[ctrlSetBackgroundColor]] [0,0,0,1]; | |||
_edit [[ctrlSetFont]] "EtelkaMonospacePro"; | |||
_edit [[ctrlSetFontHeight]] 0.03; | |||
_edit [[ctrlCommit]] 0; | |||
[[private]] _longestLineWidth = 0; | |||
[[private]] _exampleString = "abcdefghijklmnopqrstuvxyz0134567890"; | |||
[[private]] _text = ""; | |||
[[for]] "_lines" [[from]] 1 [[to]] 400 [[do]] {{cc|loop through all lines and find the longest one}} | |||
{ | |||
_lineText = _exampleString [[select]] [<nowiki/>[[round]] [[random]] 35]; | |||
_longestLineWidth = _longestLineWidth [[max]] (_lineText [[getTextWidth]] ["EtelkaMonospacePro", 0.03]); | |||
_text = _text [[+]] _lineText [[+]] [[endl]]; | |||
}; | |||
</ | _edit [[ctrlSetPositionW]] (_longestLineWidth [[+]] 2 * 0.008); {{cc|width of longest line + left and right margin set in engine}} | ||
_edit [[ctrlCommit]] 0; | |||
_edit [[ctrlSetText]] _text; | |||
</code> | |||
}} |
Revision as of 09:59, 1 October 2021
Description
- Description:
- Returns estimated width of the text based on font type and size. Similar to ctrlTextWidth but does not require a control and can be used to estimate text width for any control including buttons. Result does not include left and right margins (hardcoded at 0.008 each).
- Groups:
- GUI ControlStrings
Syntax
- Syntax:
- text getTextWidth [font, size]
- Parameters:
- text: String - text string to measure
- font: String - font type
- size: Number - font size
- Return Value:
- Number
Examples
- Example 1:
_textWidth = "Hello World" getTextWidth ["PuristaMedium", 0.03];
- Example 2:
_textWidthInclMargins = ("Hello World" getTextWidth ["PuristaMedium", 0.03]) + 0.016;
- Example 3:
#define MARGINS 0.0016 private _ctrl = findDisplay 46 ctrlCreate ["RscText", -1]; _ctrl ctrlSetText "TestString"; _ctrl ctrlSetFont "PuristaMedium"; _ctrl ctrlSetFontHeight 0.04; ctrlTextWidth _ctrl == ("TestString" getTextWidth ["PuristaMedium", 0.04]) + MARGINS; // true
Additional Information
- See also:
- ctrlTextWidth
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on Oct 28, 2020 - 22:10 (UTC)
-
When working with multiline controls ctrlTextWidth or getTextWidth will not return a proper value since the text will be treated as one long line.
Solution (Execute in Eden Editor):disableSerialization; private _display = findDisplay 313 createDisplay "RscDisplayEmpty"; private _edit = _display ctrlCreate ["RscEditMulti", -1]; _edit ctrlSetPosition [0,0,1,1]; _edit ctrlSetBackgroundColor [0,0,0,1]; _edit ctrlSetFont "EtelkaMonospacePro"; _edit ctrlSetFontHeight 0.03; _edit ctrlCommit 0; private _longestLineWidth = 0; private _exampleString = "abcdefghijklmnopqrstuvxyz0134567890"; private _text = ""; for "_lines" from 1 to 400 do // loop through all lines and find the longest one { _lineText = _exampleString select [round random 35]; _longestLineWidth = _longestLineWidth max (_lineText getTextWidth ["EtelkaMonospacePro", 0.03]); _text = _text + _lineText + endl; }; _edit ctrlSetPositionW (_longestLineWidth + 2 * 0.008); // width of longest line + left and right margin set in engine _edit ctrlCommit 0; _edit ctrlSetText _text;