Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_DropdownWithParamAttributeUIComponent.c
Go to the documentation of this file.
1 
3 {
4  //~ Param used in array
5  protected LocalizedString m_sParam;
6 
7  protected override void CreateDropdownEntries()
8  {
9  if (m_aDropdownArray.IsEmpty())
10  return;
11 
12  m_sParam = m_aDropdownArray[0];
13 
14  m_aDropdownArray.RemoveOrdered(0);
15 
16  super.CreateDropdownEntries();
17  }
18 
19  protected override string GetFullDropdownEntryText(string text)
20  {
21  return WidgetManager.Translate(text, m_sParam);
22  }
23 };
SCR_DropdownWithParamAttributeUIComponent
Definition: SCR_DropdownWithParamAttributeUIComponent.c:2
SCR_DropdownEditorAttributeUIComponent
Definition: SCR_DropdownEditorAttributeUIComponent.c:3
LocalizedString
Definition: LocalizedString.c:21