ctrlTextHeight: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<h3 style='display:none'>Notes</h3> <dl class='command_description'> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> <h3 style='display:none'>Bottom Section</h3>" to "")
mNo edit summary
 
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command
{{RV|type=command


| arma3
|game1= arma3
 
|version1= 0.50
|0.50


|gr1= GUI Control
|gr1= GUI Control


| Returns the control text height. Supported control [[ctrlType|types]] are:
|descr= Returns the control text height. Supported control [[ctrlType|types]] are:
* [[DialogControls-Text|CT_STATIC]] 0
* [[CT_STATIC]]
* [[CT_EDIT]] 2 {{Since|arma3|1.57.135040|y}}
* [[CT_STRUCTURED_TEXT]]
* [[DialogControls-Text|CT_STRUCTURED_TEXT]] 13
* [[CT_EDIT]]  
 
Since Arma 3 v2.05.147765 control types added:
| '''ctrlTextHeight''' control
* [[CT_XKEYDESC]]
* [[CT_XBUTTON]]
* [[CT_SHORTCUTBUTTON]]
* [[CT_BUTTON]]
* [[CT_ACTIVETEXT]]
|s1= [[ctrlTextHeight]]  control


|p1= control: [[Control]]
|p1= control: [[Control]]


| [[Number]]
|r1= [[Number]]


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


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


<dl class="command_description">


 
<dt></dt>
<!-- CONTINUE Notes -->
<dd class="notedate">Posted on 2017-05-24 - 21:34 (UTC)</dd>
<dl class="command_description">
<dt class="note">[[User:Nelis.75733126|Nelis.75733126]]</dt>
<dd class="notedate">Posted on May 24, 2017 - 21:34 (UTC)</dd>
<dt class="note">[[User:IT07|IT07]]</dt>
<dd class="note">
<dd class="note">
in Arma 3 v.1.70.141764, this command always returns 0 if the control has no width.  
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.  
</dd>
</dd>
</dl>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 20:59, 16 April 2024

Hover & click on the images for description

Description

Description:
Returns the control text height. Supported control types are: Since Arma 3 v2.05.147765 control types added:
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 or on the Forums.
Only post proven facts here! Add Note
Posted on 2017-05-24 - 21:34 (UTC)
Nelis.75733126
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.