---
title: "tabletPoint(with:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nsresponder/tabletpoint(with:)"
---

# tabletPoint(with:)

Informs the receiver that a tablet-point event has occurred.

## Declaration

```swift
func tabletPoint(with event: NSEvent)
```

## Parameters

- `event`: An object encapsulating information about the tablet-point event.

## Discussion

Discussion Tablet events are represented by NSEvent objects of type NSTabletPoint. They describe the current state of a transducer (that is, a pointing device) that is in proximity to its tablet, reflecting changes such as location, pressure, tilt, and rotation. See the NSEvent reference for the methods that allow you to extract this and other information from event. The default implementation of NSResponder passes the message to the next responder.

## See Also

### Responding to Other Kinds of Events

- [cursorUpdate(with:)](appkit/nsresponder/cursorupdate(with:).md)
- [flagsChanged(with:)](appkit/nsresponder/flagschanged(with:).md)
- [tabletProximity(with:)](appkit/nsresponder/tabletproximity(with:).md)
- [helpRequested(_:)](appkit/nsresponder/helprequested(_:).md)
- [scrollWheel(with:)](appkit/nsresponder/scrollwheel(with:).md)
- [quickLook(with:)](appkit/nsresponder/quicklook(with:).md)
- [changeMode(with:)](appkit/nsresponder/changemode(with:).md)
