Carbon


Type Sizes

Header: MacTextEditor.h

Specifies defaults for the TXNSetFontDefaults function or specifies that the current type size should decrement or increment by one point when you call the TXNSetTypeAttributes functions.

enum {
    kTXNDontCareTypeSize = -1,
    kTXNDontCareTypeStyle = 255,
    kTXNIncrementTypeSize = 1,
    kTXNDecrementTypeSize = -2147483648
};

Constant descriptions

kTXNDontCareTypeSize

Indicates the application’s default type size should be used.

kTXNDontCareTypeStyle

Indicates the application’s default type style should be used.>>

kTXNIncrementTypeSize

Indicates the type size should be increased by one point.

kTXNDecrementTypeSize

Indicates the type size should be decreased by one point.


© 2000 Apple Computer, Inc. (Last Updated 7/17/2000)