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 / mapkit / MKPinAnnotationView.inc
Size: Mime:
{ Parsed from MapKit.framework MKPinAnnotationView.h }


{$ifdef TYPES}
type
  MKPinAnnotationViewPtr = ^MKPinAnnotationView;
{$endif}

{$ifdef TYPES}
type
  MKPinAnnotationColor = NSUInteger;
  MKPinAnnotationColorPtr = ^MKPinAnnotationColor;

const
  MKPinAnnotationColorRed = 0;
  MKPinAnnotationColorGreen = 1;
  MKPinAnnotationColorPurple = 2;
{$endif}

{$ifdef CLASSES}

type
  MKPinAnnotationView = objcclass external (MKAnnotationView)
  public
    procedure setPinColor(newValue: MKPinAnnotationColor); message 'setPinColor:';
    function pinColor: MKPinAnnotationColor; message 'pinColor';
    procedure setAnimatesDrop(newValue: ObjCBOOL); message 'setAnimatesDrop:';
    function animatesDrop: ObjCBOOL; message 'animatesDrop';
  end;
{$endif}