|
|
(19 intermediate revisions by 4 users not shown) |
Line 1: |
Line 1: |
| ==CT_TREE Type=12==
| | #REDIRECT [[CT_TREE]] |
| '''TokenNames common to most controls, such as x,y,w,h,text,idc... are not listed here. '''
| |
| | |
| Raedor has said, "Unfortunately one can only use RscTree hardcoded." This strongly implies that RscTree is only available to BIS and not to the public. The original post can be [http://www.mapfact.net/forum_arma/viewtopic.php?p=7504&sid=09dda9bd058705f71d489a657fd7f155 found here].
| |
| | |
| {| border="1" align="left" cellpadding="3" cellspacing="0" |
| |
| ! colspan="3" bgcolor="#bbbbff" | Properties
| |
| |-
| |
| ! bgcolor="#ddddff" | Name
| |
| ! bgcolor="#ddddff" | Type
| |
| ! bgcolor="#ddddff" | Remark
| |
| |-
| |
| | '''colorSelect'''
| |
| | color array
| |
| |
| |
| |-
| |
| | '''colorBorder'''
| |
| | color array
| |
| |
| |
| |-
| |
| | '''colorArrow'''
| |
| | color array
| |
| |
| |
| |-
| |
| | '''maxHistoryDelay '''
| |
| | float
| |
| |
| |
| |-
| |
| |}<br clear="all">
| |
| | |
| * '''Example:'''
| |
| <code><nowiki>class RscTree
| |
| {
| |
| access = 0;
| |
| type = 12;
| |
| style = 0;
| |
| colorBackground[] = {0.35,0.38,0.36,1};
| |
| colorSelect[] = {1,1,1,1};
| |
| colorText[] = {1,1,1,0.75};
| |
| colorBorder[] = {1,1,1,1};
| |
| colorArrow[] = {1,1,1,1};
| |
| font = "TahomaB";
| |
| sizeEx = 0.04;
| |
| maxHistoryDelay = 1.0;
| |
| shadow = 0;
| |
| };</nowiki></code>
| |
| [[Category: Dialogs]]
| |