home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / NiceStuff.subproj / EDTextAppend.h next >
Encoding:
Text File  |  1996-01-30  |  541 b   |  20 lines

  1.  
  2. #import <appkit/Text.h>
  3.  
  4. @class Font;
  5.  
  6. @interface Text(EDAppendString2)
  7.  
  8. - appendString:(const char *)string withFont:(Font *)font;
  9. - appendString:(const char *)string length:(int)length withFont:(Font *)font;
  10. - appendString:(const char *)string  withSize:(float)size 
  11.     andStyle:(NXFontTraitMask)style;
  12.  
  13. - insertString:(const char *)string withFont:(Font *)font;
  14. - insertString:(const char *)string length:(int)length withFont:(Font *)font;
  15. - insertString:(const char *)string withSize:(float)size 
  16.     andStyle:(NXFontTraitMask)style;
  17.  
  18. @end
  19.  
  20.