# `GSGlyph.note`

*Instance Property*

A free-form note associated with the glyph.

## Declaration

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

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

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

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

## Discussion

The note is stored in the Glyphs file and does not affect font export.

## See Also

### Metadata

- [`GSGlyph.color`](/Core/GlyphsCore/GSGlyph/color) — The color label used to organize the glyph, or `nil` if no color label is assigned.
- [`GSGlyph.colorIndex`](/Core/GlyphsCore/GSGlyph/colorIndex) — A standard color label, or [`GSLabelColor.GSLabelColorNoColor`](/Core/GlyphsCore/GSLabelColor/GSLabelColorNoColor) if the glyph has a custom color label or no color label.

