# `GSFont.note`

*Instance Property*

A note stored with the font for use in the editor.

## Declaration

```swift
var note: String? { get set }
```

```objc
@property (nonatomic, strong) NSString * note;
```

[See also `note` in the Python API](https://docu.glyphsapp.com/#GSFont.note)

```python
pyobjc_instanceMethods.note() -> str
pyobjc_instanceMethods.setNote_(note: str)
```

## Discussion

The note does not affect exported fonts.

## See Also

### Font Information

- [`GSFont.fontName`](/Core/GlyphsCore/GSFont/fontName) — The default-language family name.
- [`GSFont nameUI`](/Core/GlyphsCore/GSFont/nameUI) — A family name suitable for displaying the font in the user interface.
- [`GSFont.unitsPerEm`](/Core/GlyphsCore/GSFont/unitsPerEm) — The number of font units per em.
- [`GSFont.versionMajor`](/Core/GlyphsCore/GSFont/versionMajor) — The major component of the font version.
- [`GSFont.versionMinor`](/Core/GlyphsCore/GSFont/versionMinor) — The minor component of the font version.
- [`GSFont.date`](/Core/GlyphsCore/GSFont/date) — The creation date recorded for the font.
- [`GSFont panose`](/Core/GlyphsCore/GSFont/panose) — The ten-number PANOSE classification, or `nil` when no classification is specified.

