MaskField
Initializes and returns an instance of MaskField.
Read time 1 minuteLast updated 11 days ago
Definition
- Type: Constructor
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
MaskField(List<string>, int, Func<string, string>, Func<string, string>)
Initializes and returns an instance of MaskField.
public MaskField(List<string> choices, int defaultMask, Func<string, string> formatSelectedValueCallback = null, Func<string, string> formatListItemCallback = null)
Parameters
A list of choices to populate the field.
The initial mask value for this field.
A callback to format the selected value. Unity calls this method automatically when a new value is selected in the field..
The initial mask value this field should use. Unity calls this method automatically when displaying choices for the field.
MaskField(string, List<string>, int, Func<string, string>, Func<string, string>)
Initializes and returns an instance of MaskField.
public MaskField(string label, List<string> choices, int defaultMask, Func<string, string> formatSelectedValueCallback = null, Func<string, string> formatListItemCallback = null)
Parameters
The text to use as a label for the field.
A list of choices to populate the field.
The initial mask value for this field.
A callback to format the selected value. Unity calls this method automatically when a new value is selected in the field..
The initial mask value this field should use. Unity calls this method automatically when displaying choices for the field.
MaskField()
Initializes and returns an instance of MaskField.
public MaskField()
MaskField(string)
Initializes and returns an instance of MaskField.
public MaskField(string label)
Parameters
The text to use as a label for the field.