ctrlTextHeight: Difference between revisions

From Bohemia Interactive Community
m (Text replacement - ">Posted on May ([0-9]{2}), ([0-9]{4})" to ">Posted on $2-05-$1")
m (Some wiki formatting)
 
(5 intermediate revisions by 2 users not shown)
Line 6: Line 6:
|gr1= GUI Control
|gr1= GUI Control


|descr= Returns the control text height. Supported control [[ctrlType|types]] are:
|descr= Returns the text control's height. Supported control [[ctrlType|types]]:
{{Columns|3|
* [[CT_STATIC]]
* [[CT_STATIC]]
* [[CT_STRUCTURED_TEXT]]
* [[CT_STRUCTURED_TEXT]]
* [[CT_EDIT]]  
* [[CT_EDIT]]
Since Arma 3 v2.05.147765 control types added:
* {{GVI|arma3|2.06|size= 0.75}} [[CT_XKEYDESC]]
* [[CT_XKEYDESC]]
* {{GVI|arma3|2.06|size= 0.75}} [[CT_XBUTTON]]
* [[CT_XBUTTON]]
* {{GVI|arma3|2.06|size= 0.75}} [[CT_SHORTCUTBUTTON]]
* [[CT_SHORTCUTBUTTON]]
* {{GVI|arma3|2.06|size= 0.75}} [[CT_BUTTON]]
* [[CT_BUTTON]]
* {{GVI|arma3|2.06|size= 0.75}} [[CT_ACTIVETEXT]]
* [[CT_ACTIVETEXT]]
}}
 
|s1= [[ctrlTextHeight]]  control
|s1= [[ctrlTextHeight]]  control


Line 27: Line 29:
}}
}}


<dl class="command_description">
{{Note
 
|user= Nelis75733126
<dt></dt>
|timestamp= 20170524213400
<dd class="notedate">Posted on 2017-05-24 - 21:34 (UTC)</dd>
|text= In {{arma3}} v1.70, this command always returns 0 if the definition for width of the control ( inside .hpp or .cpp file ) is missing.
<dt class="note">[[User:IT07|IT07]]</dt>
}}
<dd class="note">
In Arma 3 v1.70, this command always returns 0 if the control has no width.  
</dd>
 
</dl>

Latest revision as of 18:38, 9 January 2026

Hover & click on the images for description

Description

Description:
Returns the text control's height. Supported control types:
Groups:
GUI Control

Syntax

Syntax:
ctrlTextHeight control
Parameters:
control: Control
Return Value:
Number

Examples

Example 1:
_h = ctrlTextHeight _ctrl;

Additional Information

See also:
ctrlFontHeight ctrlTextWidth ctrlSetText ctrlType Arma: GUI Configuration

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note
Nelis75733126 - c
Posted on May 24, 2017 - 21:34 (UTC)
In Arma 3 v1.70, this command always returns 0 if the definition for width of the control ( inside .hpp or .cpp file ) is missing.