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 / appkit / NSPDFInfo.inc
Size: Mime:
{ Parsed from AppKit.framework NSPDFInfo.h }


{$ifdef TYPES}
type
  NSPDFInfoPtr = ^NSPDFInfo;
{$endif}

{$ifdef CLASSES}

type
  NSPDFInfo = objcclass external (NSObject, NSCopyingProtocol, NSCodingProtocol)
  private
    _URL: NSURL;
    _tagNames: NSArray;
    _orientation: NSPaperOrientation;
    _paperSize: NSSize;
    _attributes: NSMutableDictionary;
    _fileExtensionHidden: ObjCBOOL;
  public
    procedure setURL(newValue: NSURL); message 'setURL:';
    function URL: NSURL; message 'URL';
    procedure setFileExtensionHidden(newValue: ObjCBOOL); message 'setFileExtensionHidden:';
    function isFileExtensionHidden: ObjCBOOL; message 'isFileExtensionHidden';
    procedure setTagNames(newValue: NSArray); message 'setTagNames:';
    function tagNames: NSArray; message 'tagNames';
    procedure setOrientation(newValue: NSPaperOrientation); message 'setOrientation:';
    function orientation: NSPaperOrientation; message 'orientation';
    procedure setPaperSize(newValue: NSSize); message 'setPaperSize:';
    function paperSize: NSSize; message 'paperSize';
    function attributes: NSMutableDictionary; message 'attributes';

    { Adopted protocols }
    function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
    procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
    function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
  end;
{$endif}