CT LINEBREAK: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Redirected page to DialogControls-LineBreak)
 
(page overhaul)
Tag: Removed redirect
Line 1: Line 1:
#REDIRECT [[DialogControls-LineBreak]]
{{CT|intro
|macro = CT_LINEBREAK
|value = 98
|description = Use of this control type remains unknown. {{AnswerMe|What is it used for?}}
|commands =
|events =
}}
<!---
{{CT|abc start}}
 
{{CT|abc end}}
-->
{{CT|examples}}
=== RscExample ===
<syntaxhighlight lang="cpp">class RscLineBreak
{
idc = -1;
type = 98;
shadow = 0;
};</syntaxhighlight>

Revision as of 14:17, 29 November 2020

Introduction

Use of this control type remains unknown. Template:AnswerMe


Related commands & functions

Related User Interface Eventhandlers

Alphabetical Order

TokenNames common to most controls, such as x, y, w, h, text, idc... can be found here.
Not all of the listed attributes might have an effect nor might the list be complete. All attributes were gathered with this config crawler.
#define CT_LINEBREAK 98


Default Classes

Arma 3
AddOns: Classes need to be initialised first with class SomeClass;

Missions: Since Arma 3 v2.02 one can use import SomeClass; to initialise a class (see the import keyword).

In older versions, use "Default" call BIS_fnc_exportGUIBaseClasses; and paste the result into the description.ext.

RscExample

class RscLineBreak
{
 idc = -1;
 type = 98;
 shadow = 0;
};