// // 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 /** * 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 *paths; @end