// Copyright © 2019 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp.Enums
{
///
/// Input mode of a virtual keyboard. These constants match their equivalents
/// in Chromium's text_input_mode.h and should not be renumbered.
/// See https://html.spec.whatwg.org/#input-modalities:-the-inputmode-attribute
///
public enum TextInputMode
{
///
/// An enum constant representing the default option.
///
Default = 0,
///
/// An enum constant representing the none option.
///
None,
///
/// An enum constant representing the text option.
///
Text,
///
/// An enum constant representing the tel option.
///
Tel,
///
/// An enum constant representing the URL option.
///
Url,
///
/// An enum constant representing the mail option.
///
EMail,
///
/// An enum constant representing the numeric option.
///
Numeric,
///
/// An enum constant representing the decimal option.
///
Decimal,
///
/// An enum constant representing the search option.
///
Search,
///
/// An enum constant representing the Maximum option.
///
Max = Search
}
}