ITabletCursor interface
Represents a stylus object.
Members
The ITabletCursor interface inherits from the IUnknown interface. ITabletCursor also has these types of members:
Methods
The ITabletCursor interface has these methods.
Method | Description |
---|---|
GetButton | Retrieves the specified button object from a tablet stylus. |
GetButtonCount | Retrieves the number of buttons on the tablet stylus. |
GetId | Retrieves the stylus identifier. |
GetName | Retrieves the name of the tablet stylus. |
IsInverted | Indicates if the stylus is upside down. |
Remarks
Do not use this interface.
The following code describes how the ITabletCursor interface is defined.
[
object,
uuid(EF9953C6-B472-4B02-9D22-D0E247ADE0E8,
pointer_default(unique)
]
interface ITabletCursor : IUnknown
{
HRESULT GetName(
[out] LPWSTR *ppwszName);
HRESULT IsInverted();
HRESULT GetId(
[out] CURSOR_ID *pCid);
HRESULT GetTablet(
[out] ITablet **ppTablet);
HRESULT GetButtonCount(
[out] ULONG *pcButtons);
HRESULT GetButton(
[in] ULONG iButton,
[out] ITabletCursorButton **ppButton);
};
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows XP Tablet PC Edition [desktop apps only] |
Minimum supported server |
None supported |
Library |
|