Input Modules
What are input modules on Terminaux?
var modules = new InputModule[]
{
new TextBoxModule()
{
Name = "Text Box Integer",
Description = "Type any integer to continue",
},
new TextBoxModule()
{
Name = "Text Box String",
Description = "Type any string to continue",
},
new MaskedTextBoxModule()
{
Name = "Text Box Password",
Description = "Type any password to continue",
},
new SliderBoxModule()
{
Name = "Choose a Number",
Description = "Choose a number between 75 and 250. You'll start from 100.",
MinPos = 75,
MaxPos = 250,
Value = 100,
},
};
InfoBoxMultiInputColor.WriteInfoBoxMultiInput(modules, nameof(TestInputInfoBoxMultiInput), "Select an input module to test...");