ctrlDelete: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Game name" to "|Game name=")
(moved notes to description)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Deletes given control.
| Deletes given control. The control has to be create either by script with [[ctrlCreate]] or to have <tt>deletable</tt> property in config set to [[true]]. Use [[ctrlShow]] [[false]] and [[ctrlEnable]] [[false]] to disable controls that cannot be deleted. Returns [[Boolean]] indicating  whether the deletion was successful. |DESCRIPTION=
<br>Returns whether the deletion was successful. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 40: Line 39:
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on April 18, 2015 - 11:08 (UTC)</dd>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<dd class="note">
[[ctrlDelete]] can only delete controls created with [[ctrlCreate]]. Use [[ctrlShow]] [[false]] and [[ctrlEnable]] [[false]] to disable existing controls.
</dd>
</dl>
<!-- DISCONTINUE Notes -->
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on June 15, 2018 - 20:27 (UTC)</dd>
<dt class="note">[[User:7erra|7erra]]</dt>
<dd class="note">
ctrlDelete can indeed delete already existing controls. Though deletable = 1; has to be defined in the controls class
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Revision as of 08:54, 7 October 2019

Hover & click on the images for description

Description

Description:
Deletes given control. The control has to be create either by script with ctrlCreate or to have deletable property in config set to true. Use ctrlShow false and ctrlEnable false to disable controls that cannot be deleted. Returns Boolean indicating whether the deletion was successful.
Groups:
Uncategorised

Syntax

Syntax:
ctrlDelete control
Parameters:
control: Control
Return Value:
Boolean

Examples

Example 1:
ctrlDelete ((findDisplay 20000) displayCtrl 20001);

Additional Information

See also:
ctrlCreatectrlModelctrlSetModelctrlPositionctrlSetPositionctrlClassNamedisplayCtrlctrlModelScalectrlSetModelScalectrlModelDirAndUpctrlSetModelDirAndUp

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

Notes

Bottom Section