12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // CPDFTextProperty.h
- // ComPDFKit_Tools
- //
- // Copyright © 2014-2024 PDF Technologies, Inc. All Rights Reserved.
- //
- // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
- // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
- // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFTextProperty : NSObject
- + (CPDFTextProperty *)sharedManager;
- @property (nonatomic, strong) UIColor *fontColor;
- @property (nonatomic, assign) CGFloat textOpacity;
- @property (nonatomic, strong) NSString *fontName;
- @property (nonatomic, assign) BOOL isBold;
- @property (nonatomic, assign) BOOL isItalic;
- @property (nonatomic, assign) CGFloat fontSize;
- @property (nonatomic, assign) NSTextAlignment textAlignment;
- @end
- NS_ASSUME_NONNULL_END
|