---
title: "availableMembers(ofFontFamily:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nsfontmanager/availablemembers(offontfamily:)"
---

# availableMembers(ofFontFamily:)

Returns an array with one entry for each available member of a font family.

## Declaration

```swift
func availableMembers(ofFontFamily fam: String) -> [[Any]]?
```

## Parameters

- `fam`: The name of a font family, like one specified by the value of doc://com.apple.appkit/documentation/AppKit/NSFontManager/availableFontFamilies.

## Return Value

Return Value The available members of family. See the following discussion for a specific description.

## Discussion

Discussion Each entry of the returned NSArray is another NSArray with four members, as follows: The PostScript font name, as an NSString object. The part of the font name used in the font panel that’s not the font name, as an NSString object. This value is not localized—for example, "Roman", "Italic", or "Bold". The font’s weight, as an NSNumber. The font’s traits, as an NSNumber. The members of the family are arranged in the font panel order (narrowest to widest, lightest to boldest, plain to italic). For example, if you call availableMembersOfFontFamily:@"Times", it might return an array like this: (("Times-Roman", "Roman", 5, 4),  ("Times-Italic", "Italic", 6, 5),  ("Times-Bold", "Bold", 9, 2),  ("Times-BoldItalic", "Bold Italic", 9, 3) )

## See Also

### Getting Available Fonts

- [availableFonts](appkit/nsfontmanager/availablefonts.md)
- [availableFontFamilies](appkit/nsfontmanager/availablefontfamilies.md)
- [availableFontNames(with:)](appkit/nsfontmanager/availablefontnames(with:).md)
