T_MSCLoader_PopupSetting - piotrulos/MSCModLoader GitHub Wiki
Popup Setting Window
Namespace: MSCLoader
Assembly: MSCLoader (in MSCLoader.dll) Version: 1.3.3.356
C#
public class PopupSetting| Inheritance | Object → PopupSetting |
| AddButton | Add button to popup menu (doesn't return anything on confirm) |
| AddCheckBox | Add checkbox to popup menu (bool value returns on confirm) |
| AddDropDownList | Add DropDown List to popup menu (int [array index] value returns on confirm) |
| AddSlider(String, String, Int32, Int32, Int32, String[], Action, Boolean) | Add Integer Slider to popup menu (int value returns on confirm) |
| AddSlider(String, String, Single, Single, Single, Int32, Action, Boolean) | Add Slider to popup menu (float value returns on confirm) |
| AddText(String, Boolean) | Add just a text (doesn't return anything on confirm) |
| AddText(String, TextAlignment, Boolean) | Add just a text (doesn't return anything on confirm) |
| AddTextBox(String, String, String, String, Boolean) | Add TextBox where user can type any text (string value returns on confirm) |
| AddTextBox(String, String, String, String, ContentType, Boolean) | Add TextBox where user can type any text (string value returns on confirm) |
| ClosePopup | Close popup manually if you used dontCloseOnConfirm |
| CreateGroup | Create Settings Group, you can group settings to easily toggle visibility of multiple elements or create horizontal layout group. |
| EndGroup | End and close previously created group |
| ShowPopup | Show popup window |