lnbClear: Difference between revisions
Jump to navigation
Jump to search
RoehrenRadio (talk | contribs) (Added Links and Command Group) |
m (Text replace - "{{uc:{{PAGENAME}}}}" to "{{uc:{{PAGENAME}}}} {{uc:{{PAGENAME}}}}") |
||
Line 40: | Line 40: | ||
[[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]] | [[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]] | [[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]] |
Revision as of 11:16, 2 November 2011
Description
- Description:
- Clears all items in the 2D listbox.
- Groups:
- Uncategorised
Syntax
- Syntax:
- lnbClear idc
- Parameters:
- idc: Number -
- Return Value:
- Nothing
Examples
- Example 1:
(example)
Additional Information
- See also:
- lnbDeleteColumnlnbDeleteRow
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
-
Alternative (Arma style) syntax:
_ctrlTable = _dspl displayCtrl _idc;
lnbClear _ctrlTable; // _ctrlTable of Control type
DenV