API  1.0.0
CPFont.h
Go to the documentation of this file.
1 
2 @interface CPFont : CPObject
3 {
4  CPString _name;
5  float _size;
6  float _ascender;
7  float _descender;
8  float _lineHeight;
9  BOOL _isBold // @accessors(readonly, getter=isBold);
10  BOOL _isItalic // @accessors(readonly, getter=isItalic);
11  BOOL _isSystem // @accessors(readonly, getter=isSystem);
12 
13  CPString _cssString;
14 }
15 @end
Definition: CPFont.h:2
An immutable string (collection of characters).
Definition: CPString.h:2