PDFFreehandViewController.h 706 B

123456789101112131415161718192021222324
  1. //
  2. // PDFFreehandViewController.h
  3. // PDFReader
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // The PDF Reader Sample applications are licensed with a modified BSD license.
  8. // Please see License for details. This notice may not be removed from this file.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @interface PDFFreehandViewController : UIViewController
  12. @property (nonatomic,retain) UIColor *color;
  13. @property (nonatomic,assign) CGFloat opacity;
  14. @property (nonatomic,assign) CGFloat borderWidth;
  15. @property (nonatomic,assign) NSInteger style;
  16. @property (nonatomic,copy) void (^callback) (void);
  17. - (void)showViewController:(UIViewController *)viewController inRect:(CGRect)rect;
  18. @end