コード例 #1
0
        public TouchScreenKeyboard(string text, TouchScreenKeyboardType keyboardType, bool autocorrection, bool multiline, bool secure, bool alert, string textPlaceholder)
        {
            TouchScreenKeyboard_InternalConstructorHelperArguments touchScreenKeyboard_InternalConstructorHelperArguments = default(TouchScreenKeyboard_InternalConstructorHelperArguments);

            touchScreenKeyboard_InternalConstructorHelperArguments.keyboardType   = Convert.ToUInt32(keyboardType);
            touchScreenKeyboard_InternalConstructorHelperArguments.autocorrection = Convert.ToUInt32(autocorrection);
            touchScreenKeyboard_InternalConstructorHelperArguments.multiline      = Convert.ToUInt32(multiline);
            touchScreenKeyboard_InternalConstructorHelperArguments.secure         = Convert.ToUInt32(secure);
            touchScreenKeyboard_InternalConstructorHelperArguments.alert          = Convert.ToUInt32(alert);
            this.TouchScreenKeyboard_InternalConstructorHelper(ref touchScreenKeyboard_InternalConstructorHelperArguments, text, textPlaceholder);
        }
コード例 #2
0
 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);
 }
コード例 #3
0
        public TouchScreenKeyboard(string text, TouchScreenKeyboardType keyboardType, bool autocorrection, bool multiline, bool secure, bool alert, string textPlaceholder, int characterLimit)
        {
            TouchScreenKeyboard_InternalConstructorHelperArguments arguments = new TouchScreenKeyboard_InternalConstructorHelperArguments();

            arguments.keyboardType   = Convert.ToUInt32(keyboardType);
            arguments.autocorrection = Convert.ToUInt32(autocorrection);
            arguments.multiline      = Convert.ToUInt32(multiline);
            arguments.secure         = Convert.ToUInt32(secure);
            arguments.alert          = Convert.ToUInt32(alert);
            arguments.characterLimit = characterLimit;
            TouchScreenKeyboard_InternalConstructorHelper(ref arguments, text, textPlaceholder);
        }
コード例 #4
0
        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);
        }
コード例 #5
0
 extern private void TouchScreenKeyboard_InternalConstructorHelper(ref TouchScreenKeyboard_InternalConstructorHelperArguments arguments, string text, string textPlaceholder);
コード例 #6
0
 private void TouchScreenKeyboard_InternalConstructorHelper(ref TouchScreenKeyboard_InternalConstructorHelperArguments arguments, string text, string textPlaceholder);