---
title: "NSStringFromPoint(_:)"
framework: foundation
role: symbol
role_heading: Function
path: "foundation/nsstringfrompoint(_:)"
---

# NSStringFromPoint(_:)

Returns a string representation of a point.

## Declaration

```swift
func NSStringFromPoint(_ aPoint: NSPoint) -> String
```

## Parameters

- `aPoint`: A point structure.

## Return Value

Return Value A string of the form “{a, b}”, where a and b are the x and y coordinates of aPoint.

## See Also

### Managing Points

- [NSEqualPoints(_:_:)](foundation/nsequalpoints(_:_:).md)
- [NSMakePoint(_:_:)](foundation/nsmakepoint(_:_:).md)
- [NSPointFromString(_:)](foundation/nspointfromstring(_:).md)
- [NSPointFromCGPoint(_:)](foundation/nspointfromcgpoint(_:).md)
- [NSPointToCGPoint(_:)](foundation/nspointtocgpoint(_:).md)
