UnityEngine.TouchScreenKeyboard.TouchScreenKeyboard C# (CSharp) 메소드

TouchScreenKeyboard() 공개 메소드

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
리턴 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);
        }