# `GSFont.importedFontMasters`

*Instance Property*

The masters imported from linked fonts.

## Declaration

```swift
var importedFontMasters: [GSFontMaster] { get set }
```

```objc
@property (nonatomic, strong) NSArray<GSFontMaster *> * importedFontMasters;
```

```python
importedFontMasters() -> list[GSFontMaster]
setImportedFontMasters_(importedFontMasters: list[GSFontMaster])
```

## Discussion

Imported masters supplement [`GSFont.fontMasters`](/Core/GlyphsCore/GSFont/fontMasters) and remain owned by their source fonts.

## See Also

### Imported Masters and Fonts

- [`GSFont.importedFonts`](/Core/GlyphsCore/GSFont/importedFonts) — The fonts that supply imported glyphs or imported masters.
- [`GSFont.allMasters`](/Core/GlyphsCore/GSFont/allMasters) — The local and imported masters of the font.
- [`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.

