| 1234567891011121314151617181920212223 |
- //
- // TextDrawable.h
- // pdftest
- //
- // Created by Ray on 10/12/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import "BasicDrawable.h"
- @interface TextDrawable : BasicDrawable
- @property (nonatomic,strong) NSString* text;
- @property NSRange textRange;
- @property double lineSpace;
- @property double characterSpace;
- @property double paragraphSpace;
- @property (nonatomic,strong) UIColor * textColor;
- @property CTTextAlignment textalignment;
- @end
|