//
//  CPDFTextView.h
//  PDFViewer
//
//  Created by kdan on 2022/11/16.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface PDFWatermarkTextView : UIView

@property (nonatomic,strong) UIButton *colorBtn;
@property (nonatomic,strong) UILabel *colorLabel;
@property (nonatomic,strong) UISlider *textScaleSlider;
@property (nonatomic,strong) UISlider *opacitySlider;
@property (nonatomic,strong) UISwitch *tileSwitch;
@property (nonatomic,strong) UILabel *rangeLabel;
@property (nonatomic,strong) UILabel *tileLabel;
@property (nonatomic,strong) UILabel *textLabel;
@property (nonatomic,strong) UILabel *opacityLabel;
@property (nonatomic,strong) UITextField *verticalField;
@property (nonatomic,strong) UITextField *horizontalField;
@property (nonatomic,strong) UILabel *verticalLabel;
@property (nonatomic,strong) UILabel *horizontalLabel;
@property (nonatomic,strong) UIButton *pageBtn;
@property (nonatomic,strong) NSMutableArray *colorArray;

@end

NS_ASSUME_NONNULL_END