UnityEngine.TouchScreenKeyboard.TouchScreenKeyboard C# (CSharp) Method

TouchScreenKeyboard() public method

public TouchScreenKeyboard ( string text, TouchScreenKeyboardType keyboardType, bool autocorrection, bool multiline, bool secure, bool alert, string textPlaceholder ) : System
text string
keyboardType TouchScreenKeyboardType
autocorrection bool
multiline bool
secure bool
alert bool
textPlaceholder string
return System
        public TouchScreenKeyboard(string text, TouchScreenKeyboardType keyboardType, bool autocorrection, bool multiline, bool secure, bool alert, string textPlaceholder)
        {
            TouchScreenKeyboard_InternalConstructorHelperArguments arguments = new TouchScreenKeyboard_InternalConstructorHelperArguments {
                keyboardType = Convert.ToUInt32(keyboardType),
                autocorrection = Convert.ToUInt32(autocorrection),
                multiline = Convert.ToUInt32(multiline),
                secure = Convert.ToUInt32(secure),
                alert = Convert.ToUInt32(alert)
            };
            this.TouchScreenKeyboard_InternalConstructorHelper(ref arguments, text, textPlaceholder);
        }