- MICROSOFT SURFACE PRO 4 PEN ERASER BUTTON SHORTCUTS HOW TO
- MICROSOFT SURFACE PRO 4 PEN ERASER BUTTON SHORTCUTS PLUS
- MICROSOFT SURFACE PRO 4 PEN ERASER BUTTON SHORTCUTS WINDOWS
Rest your hand on the screen of your Surface device,2 just as you would writing on a notebook. Responds to an artist’s touchĮffortlessly express the finest sketches and lines with Surface Pen. Sketch, shade, and paint with artistic precision and finer control with 4,096 pressure points that respond to the lightest touch. Surface Pen is a natural writing and drawing tool, with precision ink on one end that now enables tilt1 and a natural-feeling rubber eraser on the other. Strikethrough words to delete, circle text to select, highlight using Ink Editor - and even replay the sequence of mark-ups from others.
MICROSOFT SURFACE PRO 4 PEN ERASER BUTTON SHORTCUTS WINDOWS
Windows and Office give Surface Pen more power than ever.
MICROSOFT SURFACE PRO 4 PEN ERASER BUTTON SHORTCUTS PLUS
defined for this entry at this time.Create without limits New Surface Pen is better and faster than ever, with precision ink on one end and a rubber eraser on the other - plus tilt for shading,1 greater sensitivity, and virtually no lag. Return false if erasing on pen inversion is disabled. Return true if erasing on pen inversion is enabled. Object keyValue = (null = regKey) ? DefaultValue : the subkey or the entry does not exist, use the default value. Retrieve the value of the EraseEnable subkey entry. Constants for the registry subkey and the entryĬonst string Subkey string KeyEntry = "EraseEnable" The GetEraseEnabled method returns the expected value of TRUE if either the subkey or the entry is not present. The GetEraseEnabled method returns TRUE if the value of the entry is 1 returns FALSE if the value of the entry is 0 or throws an InvalidOperationException exception if the value of the entry is other than 1 or 0. The following C# example defines a GetEraseEnabled method that checks the value of the EraseEnable entry of the SysEventParameters subkey. Use this cached value to modify the behavior of your application appropriately.
The EraseEnable entry of this subkey is of type REG_DWORD. HKEY_CURRENT_USER\SOFTWARE\Microsoft\WISP\PEN\SysEventParameters To detect if the user has enabled erasing for the top of the pen, check the following registry subkey: This functionality is accessed by a check box in the Pen buttons group box on the Pen Options tab of the Tablet and Pen Settings control panel dialog. Users can use the top of the pen to erase ink in applications designed for Tablet PC, if their particular hardware allows for it. Determining if Erasing with the Top of the Pen Is Enabled
MICROSOFT SURFACE PRO 4 PEN ERASER BUTTON SHORTCUTS HOW TO
Erase either the ink or the strokes that intersect the path of the cursor, depending upon design or functional considerations.įor an example of how to use the top of the pen to erase ink, see the Ink Erasing Sample. If the Inverted property is true, perform hit testing to determine which ink the cursor is moving over. When the cursor is in range, look for the Inverted property on the Cursor object. To look for the inverted cursor, listen for the CursorInRange event to determine when the cursor is within the context of your application. To implement erasing with the top of the tablet pen, your application must look for a change in the cursor. You can set the erase mode to delete only the ink that the cursor passes over or whole strokes that intersect the path of the cursor, depending upon design or functional considerations.įor an example of how to use an erase mode to erase ink, see the Ink Erasing Sample.
In this mode, use hit testing to determine which ink the cursor is moving over. To do so, the application must have an erase mode that users can employ. The tip of the tablet pen is generally used for handwriting and drawing however, the tip can also be used to erase ink.
If you choose to implement erasing in your application other than by using the InkOverlay object, you can do so by using one of the following two methods.