Esempio n. 1
0
        protected void SetInputScope(InputTypes types)
        {
            if (_textBoxView != null)
            {
                _textBoxView.InputType = types;

                if (!types.HasPasswordFlag())
                {
                    UpdateFontPartial();
                }
            }
        }
Esempio n. 2
0
        protected void SetInputScope(InputTypes types)
        {
            if (_textBoxView != null)
            {
                if (FeatureConfiguration.TextBox.UseLegacyInputScope)
                {
                    _textBoxView.InputType = types;
                }
                else
                {
                    _textBoxView.SetRawInputType(types);
                }

                if (!types.HasPasswordFlag())
                {
                    UpdateFontPartial();
                }
            }
        }