DekGenius.com
[ Team LiB ] Previous Section Next Section

NSHelpManager Mac OS X 10.0

This class provides an interface to an application's help manager object used to provide online help in the application. You won't need to use this class, as Project Builder and Interface Builder provide support for integrating help documents with an application.

figs/cocn_1539.gif

@interface NSHelpManager : NSObject
 // Accessor Methods
   - (void)setContextHelp:(NSAttributedString *)attrString forObject:(id)object;
 // Class Methods
   + (BOOL)isContextHelpModeActive;
   + (void)setContextHelpModeActive:(BOOL)active;
   + (NSHelpManager *)sharedHelpManager;
 // Instance Methods
   - (NSAttributedString *)contextHelpForObject:(id)object;
   - (void)removeContextHelpForObject:(id)object;
   - (BOOL)showContextHelpForObject:(id)object locationHint:(NSPoint)pt;

    [ Team LiB ] Previous Section Next Section