Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / pdfkit / PDFAnnotationText.inc
Size: Mime:
{ Parsed from PDFKit.framework PDFAnnotationText.h }


{$ifdef TYPES}
type
  PDFAnnotationTextPtr = ^PDFAnnotationText;
{$endif}

{$ifdef TYPES}
type
  PDFTextAnnotationIconType = NSInteger;
  PDFTextAnnotationIconTypePtr = ^PDFTextAnnotationIconType;

const
  kPDFTextAnnotationIconComment = 0;
  kPDFTextAnnotationIconKey = 1;
  kPDFTextAnnotationIconNote = 2;
  kPDFTextAnnotationIconHelp = 3;
  kPDFTextAnnotationIconNewParagraph = 4;
  kPDFTextAnnotationIconParagraph = 5;
  kPDFTextAnnotationIconInsert = 6;
{$endif}

{$ifdef CLASSES}

type
  PDFAnnotationText = objcclass external (PDFAnnotation, NSCopyingProtocol, NSCodingProtocol)
  private
    _pdfPriv2: PDFAnnotationTextPrivateVars;
  public
    function iconType: PDFTextAnnotationIconType; message 'iconType';
    procedure setIconType (type__: PDFTextAnnotationIconType); message 'setIconType:';
  end;
{$endif}