DialogControls-LineBreak: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Created page with "'''TokenNames common to most controls, such as x,y,w,h,text,idc... are not listed here.''' ===CT_LINEBREAK=98=== {| border="1" cellpadding="3" cellspacing="0" | ! colspan="3" bg...")
 
m (visual tweaks)
Line 1: Line 1:
'''TokenNames common to most controls, such as x,y,w,h,text,idc... are not listed here.'''
{{Informative|TokenNames common to most controls, such as x, y, w, h, text, idc... are not listed here.}}
===CT_LINEBREAK=98===
===CT_LINEBREAK=98===


{| border="1" cellpadding="3" cellspacing="0" |
{| class="wikitable" border="1" cellpadding="3" cellspacing="0" |
! colspan="3" bgcolor="#bbbbff" | Properties
! colspan="3" bgcolor="#bbbbff" | Properties
|-
|-
Line 10: Line 10:
|-
|-
|}<br clear="all">
|}<br clear="all">
* '''Example:'''
* '''Example Config:'''
<code><nowiki>class RscLineBreak
<syntaxhighlight lang="cpp">class RscLineBreak
{
{
  idc = -1;
  idc = -1;
  type = 98;
  type = 98;
  shadow = 0;
  shadow = 0;
};</nowiki></code>
};</syntaxhighlight>
[[Category: Dialogs]]
[[Category: Dialogs]]

Revision as of 19:04, 18 February 2020

TokenNames common to most controls, such as x, y, w, h, text, idc... are not listed here.

CT_LINEBREAK=98

Properties
Name Type Remark


  • Example Config:
class RscLineBreak
{
 idc = -1;
 type = 98;
 shadow = 0;
};