ITabletCursorButton interface

Represents general information about a button on a stylus device.

Members

The ITabletCursorButton interface inherits from the IUnknown interface. ITabletCursorButton also has these types of members:

Methods

The ITabletCursorButton interface has these methods.

Method Description
GetGuid Retrieves the unique identifier of the stylus button.
GetName Retrieves the name of the stylus button.

Remarks

Developers should not use this interface.

The following code shows how the ITabletCursorButton interface is defined.

[
    object,
    uuid(997A992E-8B6C-4945-BC17-A1EE563B3AB7),
    pointer_default(unique)
]
interface ITabletCursorButton : IUnknown
{
    HRESULT GetName(
        [out] LPWSTR *ppwszName);

    HRESULT GetGuid(
        [out] GUID *pguidBtn);
};

Requirements

Requirement Value
Minimum supported client
Windows XP Tablet PC Edition [desktop apps only]
Minimum supported server
None supported
Library
Wisptis.exe

See also

ITabletCursorButton Interface