ctrlTextHeight: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(40 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|version1= 0.50


|0.50|= Game version
|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]]
* [[DialogControls-EditBox|CT_EDIT]] 2        (''Since Arma 3 v1.57.135040'')
* [[CT_STRUCTURED_TEXT]]
* [[DialogControls-Text|CT_STRUCTURED_TEXT]] 13 |= Description
* [[CT_EDIT]]  
____________________________________________________________________________________________
Since Arma 3 v2.05.147765 control types added:
* [[CT_XKEYDESC]]
* [[CT_XBUTTON]]
* [[CT_SHORTCUTBUTTON]]
* [[CT_BUTTON]]
* [[CT_ACTIVETEXT]]
|s1= [[ctrlTextHeight]]  control


| '''ctrlTextHeight''' control |= Syntax
|p1= control: [[Control]]


|p1= control: [[Control]] |= PARAMETER1
|r1= [[Number]]


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


 
|seealso= [[ctrlFontHeight]] [[ctrlTextWidth]] [[ctrlSetText]] [[ctrlType]] [[Arma: GUI Configuration]]
|x1= <code>_h = [[ctrlTextHeight]] _ctrl;</code>|= EXAMPLE1
 
____________________________________________________________________________________________
 
| [[ctrlSetText]], [[ctrlType]], [[Dialog Control]] |= SEEALSO
 
|  |= MPBEHAVIOUR
____________________________________________________________________________________________
}}
}}


<h3 style='display:none'>Notes</h3>
<dl class="command_description">
<dl class='command_description'>
<!-- Note Section BEGIN -->
 
<!-- Note Section END -->
</dl>


<h3 style='display:none'>Bottom Section</h3>
<dt></dt>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
<dd class="notedate">Posted on 2017-05-24 - 21:34 (UTC)</dd>
[[Category:Arma 3: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
<dt class="note">[[User:Nelis.75733126|Nelis.75733126]]</dt>
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
 
<!-- CONTINUE Notes -->
<dl class="command_description">
<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.