12345678910111213141516171819202122232425262728 |
- //
- // PDFShapeViewController.h
- // PDFReader
- //
- // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
- //
- // The PDF Reader Sample applications are licensed with a modified BSD license.
- // Please see License for details. This notice may not be removed from this file.
- //
- #import <UIKit/UIKit.h>
- @interface PDFShapeViewController : UIViewController
- @property (nonatomic,retain) UIColor *color;
- @property (nonatomic,retain) UIColor *fillColor;
- @property (nonatomic,assign) CGFloat opacity;
- @property (nonatomic,assign) CGFloat fillOpacity;
- @property (nonatomic,assign) CGFloat borderWidth;
- @property (nonatomic,assign) NSInteger style;
- @property (nonatomic,assign) BOOL allowsShowStyle;
- @property (nonatomic,copy) void (^callback) (void);
- - (void)showViewController:(UIViewController *)viewController inRect:(CGRect)rect;
- @end
|