ctrlTextHeight: Difference between revisions

From Bohemia Interactive Community
m (Text replacement - "\|s1= +" to "|s1= ")
m (Some wiki formatting)
 
(7 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 22: Line 24:
|r1= [[Number]]
|r1= [[Number]]


|x1= <code>_h = [[ctrlTextHeight]] _ctrl;</code>
|x1= <sqf>_h = ctrlTextHeight _ctrl;</sqf>


|seealso= [[ctrlFontHeight]] [[ctrlTextWidth]] [[ctrlSetText]] [[ctrlType]] [[Arma: GUI Configuration]]
|seealso= [[ctrlFontHeight]] [[ctrlTextWidth]] [[ctrlSetText]] [[ctrlType]] [[Arma: GUI Configuration]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Nelis75733126
<dt></dt>
|timestamp= 20170524213400
<dd class="notedate">Posted on May 24, 2017 - 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.