# `GSFont.allMasters`

*Instance Property*

The local and imported masters of the font.

## Declaration

```swift
var allMasters: [GSFontMaster] { get }
```

```objc
@property (readonly) NSArray<GSFontMaster *> * allMasters;
```

```python
allMasters() -> list[GSFontMaster]
```

## Discussion

Local masters are ordered before imported masters.

## See Also

### Imported Masters and Fonts

- [`GSFont.importedFontMasters`](/Core/GlyphsCore/GSFont/importedFontMasters) — The masters imported from linked fonts.
- [`GSFont.importedFonts`](/Core/GlyphsCore/GSFont/importedFonts) — The fonts that supply imported glyphs or imported masters.
- [`GSFont.countOfAllMasters`](/Core/GlyphsCore/GSFont/countOfAllMasters) — The number of local and imported masters.
- [`GSFont allMasterAtIndex:`](/Core/GlyphsCore/GSFont/allMasterAtIndex:) — Returns the local or imported master at an index, or `nil` when the index is out of bounds.
- [`GSFont indexOfObjectInAllMasters:`](/Core/GlyphsCore/GSFont/indexOfObjectInAllMasters:) — Returns the index of a local or imported master, or `NSNotFound` when the master is not in the font.
- [`GSFont reloadLinkedFonts:`](/Core/GlyphsCore/GSFont/reloadLinkedFonts:) — Reloads linked fonts and refreshes imported masters and imported glyphs.

