Carbon


Initialization Option Masks

Header: MacTextEditor.h

Specifies the nontext data supported in a text object.

enum {
    kTXNWantMoviesMask = 1,
    kTXNWantSoundMask = 2,
    kTXNWantGraphicsMask = 4,
    kTXNAlwaysUseQuickDrawTextMask = 8,
    kTXNUseTemporaryMemoryMask = 16
};

Constant descriptions

kTXNWantMoviesMask

Indicates support for movie data embedded in a text object.

kTXNWantSoundMask

Indicates support for sound data embedded in a text object.

kTXNWantGraphicsMask

Indicates support for graphics data embedded in a text object.

kTXNAlwaysUseQuickDrawTextMask

Indicates that MLTE should always use QuickDraw even if ATSUI is available. This is often the best choice for applications that need speed and efficient memory usage.

kTXNUseTemporaryMemoryMask

Indicates all memory allocations required by MLTE should use temporary memory.

You use initialization options constants when you call the TXNInitTextension function.


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