// 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
{
///
/// The device type that caused the event.
///
public enum PointerType
{
///
/// An enum constant representing the touch option.
///
Touch = 0,
///
/// An enum constant representing the mouse option.
///
Mouse,
///
/// An enum constant representing the pen option.
///
Pen,
///
/// An enum constant representing the eraser option.
///
Eraser,
///
/// An enum constant representing the unknown option.
///
Unknown
}
}