Carbon


FamRec

Header: Fonts.h

struct FamRec {
    SInt16 ffFlags; 
    SInt16 ffFamID; 
    SInt16 ffFirstChar; 
    SInt16 ffLastChar; 
    SInt16 ffAscent; 
    SInt16 ffDescent; 
    SInt16 ffLeading; 
    SInt16 ffWidMax; 
    SInt32 ffWTabOff; 
    SInt32 ffKernOff; 
    SInt32 ffStylOff; 
    SInt16 ffProperty[9]; 
    SInt16 ffIntl[2]; 
    SInt16 ffVersion;
};

Field descriptions

ffFlags

Flags for family.

ffFamID

Family ID number.

ffFirstChar

ASCII code of first character.

ffLastChar

ASCII code of last character.

ffAscent

Maximum ascent for 1-pt font.

ffDescent

Maximum descent for 1-pt font.

ffLeading

Maximum leading for 1-pt font.

ffWidMax

Maximum glyph width for 1-pt font.

ffWTabOff

Offset to family glyph-width table.

ffKernOff

Offset to kerning table.

ffStylOff

Offset to style-mapping table.

ffProperty

Style properties info.

ffIntl

For international use.

ffVersion

Version number.

The font family structure, of data type FamRec, describes the format of the font family ('FOND') resource. It is shown here as a guide to the format of the resource. The font family structure is not used directly by any Font Manager functions.

The fields of the font family structure are described in 'FOND'.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)