12345678910111213141516171819202122232425262728 |
- //
- // CPDFInkAnnotation.h
- // ComPDFKit
- //
- // Copyright © 2014-2022 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.
- // This notice may not be removed from this file.
- //
- #import <ComPDFKit/CPDFAnnotation.h>
- /**
- * A CPDFInkAnnotation object displays one or more disjoint paths on a page. This is typically used to represent a freehand jotting or “scribble” of handwritten text.
- *
- * @discussion The setBorderWidth: method of the CPDFAnnotation class determines the stroke thickness.
- * The setColor: method of the CPDFAnnotation class determines the stroke color.
- */
- @interface CPDFInkAnnotation : CPDFAnnotation
- /**
- * Method to get / set an array containing the points that make up an annotation.
- */
- @property (nonatomic,retain) NSArray<NSArray *> *paths;
- @end
|