Home | History | Annotate | Download | only in mac

Lines Matching full:fontname

76             || aSelector == @selector(addFontAttribute:fontName:size:)
77 || aSelector == @selector(addFontAttribute:fontName:size:from:length:))
98 if (aSelector == @selector(addFontAttribute:fontName:size:))
100 if (aSelector == @selector(addFontAttribute:fontName:size:from:length:))
142 - (void)addFontAttribute:(NSString *)attrName fontName:(NSString *)fontName size:(float)fontSize
144 [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange(0, [self length])];
147 - (void)addFontAttribute:(NSString *)attrName fontName:(NSString *)fontName size:(float)fontSize from:(int)from length:(int)length
149 [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange((unsigned)from, (unsigned)length)];