PDFView Class Reference
| Inherits from | |
| Conforms to | |
| Framework | Library/Frameworks/Quartz.framework/Frameworks/PDFKit.framework |
| Availability | Available in OS X v10.4 and later. |
| Declared in | PDFView.h |
Overview
A PDFView object encapsulates the functionality of PDF Kit into a single widget that you can add to your application using Interface Builder.
PDFView may be the only class you need to deal with for adding PDF functionality to your application. It lets you display PDF data and allows users to select content, navigate through a document, set zoom level, and copy textual content to the Pasteboard. PDFView also keeps track of page history.
You can subclass PDFView to create a custom PDF viewer.
You can also create a custom PDF viewer by using the PDF Kit utility classes directly and not using PDFView at all.
Tasks
Associating a Document with a View
Navigating Within a Document
-
– canGoBack -
– canGoForward -
– canGoToFirstPage -
– canGoToLastPage -
– canGoToNextPage -
– canGoToPreviousPage -
– currentPage -
– currentDestination -
– goBack: -
– goForward: -
– goToFirstPage: -
– goToLastPage: -
– goToNextPage: -
– goToPreviousPage: -
– goToPage: -
– goToDestination: -
– goToSelection: -
– goToRect:onPage:
Working with Display Modes and Characteristics
-
– setDisplayMode: -
– displayMode -
– setDisplaysPageBreaks: -
– displaysPageBreaks -
– setDisplayBox: -
– displayBox -
– displaysAsBook -
– setDisplaysAsBook: -
– setShouldAntiAlias: -
– shouldAntiAlias -
– setGreekingThreshold: -
– greekingThreshold -
– takeBackgroundColorFrom: -
– setBackgroundColor: -
– backgroundColor
Setting the Delegate
Scaling the View
-
– setScaleFactor: -
– scaleFactor -
– zoomIn: -
– canZoomIn -
– zoomOut: -
– canZoomOut -
– setAutoScales: -
– autoScales
Working with Mouse Position and Events
Handling Selections
-
– currentSelection -
– setCurrentSelection: -
– selectAll: -
– clearSelection -
– copy: -
– scrollSelectionToVisible: -
– setCurrentSelection:animate: -
– setHighlightedSelections: -
– highlightedSelections
Setting the Password
Rendering the View and Printing
Conversion Methods for Subclasses
-
– pageForPoint:nearest: -
– convertPoint:toPage: -
– convertRect:toPage: -
– convertPoint:fromPage: -
– convertRect:fromPage:
Miscellaneous Methods
-
– documentView -
– rowSizeForPage: -
– layoutDocumentView -
– allowsDragging -
– setAllowsDragging: -
– visiblePages -
– annotationsChangedOnPage:
Managing Scale Factor
-
– PDFViewWillChangeScaleFactor:toScale:delegate method
Handling URL Links
-
– PDFViewWillClickOnLink:withURL:delegate method
Responding to Annotation Actions
-
– PDFViewPerformFind:delegate method -
– PDFViewPerformGoToPage:delegate method -
– PDFViewPerformPrint:delegate method -
– PDFViewOpenPDF:forRemoteGoToAction:delegate method
Changing the Print Job Title
-
– PDFViewPrintJobTitle:delegate method
Instance Methods
allowsDragging
Determines whether the view can accept new PDF documents dragged into it by the user.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hannotationsChangedOnPage:
Tells the PDF view that an annotation on the specified page has changed.
Discussion
When the PDFView object receives this message, it rescans for tool tips and pop-ups and informs the PDFThumbailView objects so the thumbnail images can be redrawn.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hareaOfInterestForMouse:
Returns the type of area the mouse cursor is over.
Discussion
The PDFAreaOfInterest enumeration defines the various area types. This method is for custom subclasses of the PDFView class. Use it if you override the NSResponder class’s mouseMoved: method or related methods.
Refer to “Constants” for the various values of the area-of-interest constants. Each of these constants contributes to the value of the PDFAreaOfInterest bit field.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hautoScales
Returns a Boolean value indicating whether autoscaling is set.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hbackgroundColor
Returns the view’s background color.
Discussion
A view’s background is the area displayed to either side of a PDF document’s pages. The background also appears between pages when page breaks are enabled. The default color is a 50% gray.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hcanGoBack
Returns a Boolean value indicating whether the user can navigate to the previous page in the page history.
Discussion
The page history gets built as your application calls navigation methods such as goToDestination: and goToLastPage:.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcanGoForward
Returns a Boolean value indicating whether the user can navigate to the next page in the page history.
Discussion
The page history gets built as your application calls navigation methods such as goToDestination: and goToLastPage:.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcanGoToFirstPage
Returns a Boolean value indicating whether the user can navigate to the first page of the document.
Discussion
The return value will be YES unless the view is already displaying the first page.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcanGoToLastPage
Returns a Boolean value indicating whether the user can navigate to the last page of the document.
Discussion
The return value will be YES unless the view is already displaying the last page.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcanGoToNextPage
Returns a Boolean value indicating whether the user can navigate to the next page of the document.
Discussion
The return value will be YES unless the view is displaying the last page.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcanGoToPreviousPage
Returns a Boolean value indicating whether the user can navigate to the previous page of the document.
Discussion
The return value will be YES unless the view is displaying the first page.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcanZoomIn
Returns a Boolean value indicating whether the user can magnify the view—that is, zoom in.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcanZoomOut
Returns a Boolean value indicating whether the user can view an expanded area—that is, zoom out.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hclearSelection
Clears the selection.
Discussion
The view redraws as necessary but does not scroll. This call is equivalent to calling [PDFView setCurrentSelection:NULL].
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hconvertPoint:fromPage:
Converts a point from page space to view space.
Discussion
Page space is a 72 dpi coordinate system with the origin at the lower-left corner of the current page. View space is a coordinate system with the origin at the lower-left corner of the current PDF view.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hconvertPoint:toPage:
Converts a point from view space to page space.
Discussion
Page space is a 72 dpi coordinate system with the origin at the lower-left corner of the current page. View space is a coordinate system with the origin at the lower-left corner of the current PDF view.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hconvertRect:fromPage:
Converts a rectangle from page space to view space.
Discussion
Page space is a 72 dpi coordinate system with the origin at the lower-left corner of the current page. View space is a coordinate system with the origin at the lower-left corner of the current PDF view.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hconvertRect:toPage:
Converts a rectangle from view space to page space.
Discussion
Page space is a 72 dpi coordinate system with the origin at the lower-left corner of the current page. View space is a coordinate system with the origin at the lower-left corner of the current PDF view.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hcopy:
Copies the text in the selection, if any, to the Pasteboard.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcurrentDestination
Returns a PDFDestination object representing the current page and the current point in the view specified in page space.
Discussion
Page space is a 72 dpi coordinate system with the origin at the lower-left corner of the current page.
Availability
- Available in OS X v10.4 and later.
See Also
-
– currentPage -
– goToDestination:(PDFDestination)
Declared In
PDFView.hcurrentPage
Returns the current page.
Discussion
When there are two pages in the view in a two-up mode, “current page” is the left page. For continuous modes, returns the page crossing a horizontal line halfway between the view’s top and bottom bounds.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hcurrentSelection
Returns the current selection.
Discussion
Returns NULL if no selection exists.
Note that this method returns the actual instance of the current PDFSelection object. Therefore, if you want to modify it, you should make a copy of the returned selection and modify that, instead.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hdelegate
Returns the view’s delegate.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hdisplayBox
Returns the current style of display box.
Discussion
The available values for display boxes are defined in the Constants section in the PDFPage class.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hdisplayMode
Returns the current display mode.
Discussion
See “Constants” for possible values.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hdisplaysAsBook
Returns a Boolean value indicating whether the view will display the first page as a book cover (meaningful only when the document is in two-up or two-up continuous display mode).
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hdisplaysPageBreaks
Returns a Boolean value indicating whether the view is displaying page breaks.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hdocument
Returns the document associated with a PDFView object.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hdocumentView
Returns the innermost view used by PDFView or by your PDFView subclass.
Discussion
The innermost view is the one displaying the visible document pages. This method is useful when converting coordinates from one view to another.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hdrawPage:
For use by subclasses of PDFView for custom rendering of pages.
Discussion
Do not invoke this method, except by invoking it on super from a subclass.
The PDFView class calls drawPage: as necessary for each visible page that requires rendering. In the PDFView class, this method erases page to white, calls [page drawInRect: pageRect withBox: [self displayBox]] , and then draws the selection, if any.
You can override this method to draw on top of a PDF page or to control how pages are drawn. In these cases, invoke this method on super and then perform custom drawing on top of the PDF page.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hdrawPagePost:
For use by subclasses of PDFView for post-page rendering.
Discussion
The default implementation of this method draws the text highlighting (if any) for the page. This method does not apply scaling or rotating to the current context to map to page space; instead, the context is in view-space coordinates (in which the origin is at the lower-left corner of the current PDF view).
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hgoBack:
Navigates back one step in the page history.
Discussion
The page history gets built as your application calls navigation methods such as goToDestination: and goToLastPage:.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hgoForward:
Navigates forward one step in the page history.
Discussion
The page history gets built as your application calls navigation methods such as goToDestination: and goToLastPage:.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hgoToDestination:
Navigates to the specified destination.
Discussion
Destinations include a page and a point on the page specified in page space.
Page space is a 72 dpi coordinate system with the origin at the lower-left corner of the current page.
Availability
- Available in OS X v10.4 and later.
See Also
-
– currentDestination(PDFDestination) -
– currentPage
Declared In
PDFView.hgoToFirstPage:
Navigates to the first page of the document.
Discussion
PDF Kit records the move in its page history.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hgoToLastPage:
Navigates to the last page of the document.
Discussion
PDF Kit records the move in its page history.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hgoToNextPage:
Navigates to the next page of the document.
Discussion
PDF Kit records the move in its page history.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hgoToPage:
Scrolls to the specified page.
Discussion
PDF Kit records the move in its page history.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hgoToPreviousPage:
Navigates to the previous page of the document.
Discussion
PDF Kit records the move in its page history.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hgoToRect:onPage:
Navigates to the specified rectangle on the specified page.
Discussion
If the specified rectangle is already visible, this method does nothing. This allows you to scroll the PDFView object to a specific PDFAnnotation or PDFSelection object, because both of these objects have bounds methods that return an annotation or selection position in page space.
Note that rect is specified in page-space coordinates. Page space is a 72 dpi coordinate system with the origin at the lower-left corner of the current page.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hgoToSelection:
Scrolls to the first character of the specified selection.
Discussion
PDF Kit records the move in its page history.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hgreekingThreshold
Returns the current greeking threshold for the view.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hhighlightedSelections
Returns the array of selections that are highlighted using setHighlightedSelections.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
PDFView.hlayoutDocumentView
Performs layout of the inner views.
Discussion
The PDFView actually contains several subviews, such as the document view (where the PDF is actually drawn) and a “matte view” (which may appear as a gray area around the PDF content, depending on the scaling). Changes to the PDF content may require changes to these inner views, so you must call this method explicitly if you use PDF Kit utility classes to add or remove a page, rotate a page, or perform other operations affecting visible layout.
This method is called automatically from PDFView methods that affect the visible layout (such as setDocument:, setDisplayBox: or zoomIn:).
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hpageForPoint:nearest:
Returns the page containing a point specified in view coordinates.
Discussion
Returns NULL if there’s no page at the specified point and nearest is set to NO.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hperformAction:
Performs the specified action.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hprintWithInfo:autoRotate:
Prints the document with the specified printer information.
Discussion
If autoRotate is set to YES, then ths method ignores the orientation attribute in the NSPrintInfo object and instead chooses the orientation that best fits the page to the paper size. This orientation occurs on a page-by-page basis.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hprintWithInfo:autoRotate:pageScaling:
Prints the document with the specified printer and page-scaling information.
Discussion
If pageScaling is set to kPDFPrintPageScaleToFit, each page is scaled up or down to best fit the paper size. If pageScaling is set to kPDFPrintPageScaleDownToFit, only large pages are scaled down to fit; small pages are not scaled up to fit. Specifying kPDFPrintPageScaleNone for pageScaling is equivalent to calling printWithInfo:autoRotate:. See PDFDocument for more information on page-scaling types.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
PDFView.hrowSizeForPage:
Returns the size needed to display a row of the current document page.
Discussion
The size is dependent on the current scale factor and display attributes.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hscaleFactor
Returns the current scale factor for the view.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hscrollSelectionToVisible:
Scrolls the view until the selection is visible.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hselectAll:
Selects all text in the document.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hsetAllowsDragging:
Specifies whether the view can accept drags.
Discussion
If set to YES, the user can drag a new PDF document into the view. The new document is then displayed in the view, and the old document is released.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetAutoScales:
Toggles whether the scaling factor applied to a view automatically responds to resizing.
Discussion
When set to autoscaling, the document scales to fill the PDFView object as the user resizes it.
For the single-page and two-up continuous modes, autoscaling fits the page to the width of the view. For single-page and two-up noncontinuous modes, autoscaling provides best fit, in which the viewed pages are as large as possible while displaying in their entirety within the view.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetBackgroundColor:
Sets the view’s background color.
Discussion
A view’s background is the area displayed to either side of a PDF document’s pages. The background also appears between pages when page breaks are enabled. The default color is a 50% gray.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hsetCurrentSelection:
Sets the selection.
Discussion
The view redraws as necessary but does not scroll. If you need to scroll to the current selection, use scrollSelectionToVisible:. If you pass nil for the selection, this call is equivalent to calling clearSelection.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hsetCurrentSelection:animate:
Sets the selection, in an animated way, if desired.
Discussion
This method behaves as setCurrentSelection:, but with the addition of animation, if animate is YES. The animation serves to draw the user’s attention to the new selection, which can be useful when implementing search.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
PDFView.hsetCursorForAreaOfInterest:
Sets the type of mouse cursor according to the type of area the mouse cursor is over.
Discussion
This method is especially useful for custom subclasses of the PDFView class.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetDelegate:
Sets a delegate for the view.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetDisplayBox:
Specifies the box to display and to clip to.
Discussion
The values for box are defined in the PDFDisplayBox enumeration. The default value for this method is kPDFDisplayBoxCropBox.
The available values for display boxes are defined in the Constants section in the PDFPage class.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetDisplayMode:
Sets the display mode for the view.
Discussion
Available display modes are single page, single-page continuous, two-up, and two-up continuous, as defined in “Constants.”
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetDisplaysAsBook:
Specifies whether the view should treat the document’s first page as a book cover.
Discussion
For two-up modes, a YES value for this method specifies that the first page should be displayed by itself.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetDisplaysPageBreaks:
Toggles the display of page breaks.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetDocument:
Associates a document with a PDFView object.
Discussion
If a document was already associated with the view, it is released first and then document is associated with the view.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetGreekingThreshold:
Sets the greeking threshold to use for displaying text.
Discussion
The default threshold is 3.0.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetHighlightedSelections:
Highlights the specified array of selections.
Discussion
Unlike the selections users set (using, for example, setCurrentSelection:), the selections you specify in this method do not go away (that is, appear deselected) when users click elsewhere in the view or document. Instead, to deselect the selections, you must call [setHighlightedSelections:NULL] to remove them.
You might use this method to highlight the set of matches from a text search. To prevent the user from confusing their own selections with selections you set using this method, it is recommended that you use a highlight color that is different from the user’s default text selection color.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
PDFView.hsetScaleFactor:
Sets the scale factor for the view.
Discussion
The default value is 1.0, corresponding to actual size.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hsetShouldAntiAlias:
Specifies whether to use anti-aliasing in the view.
Discussion
The default value is YES.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hshouldAntiAlias
Returns a Boolean value indicating whether the view is anti-aliased.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.htakeBackgroundColorFrom:
Sets the view’s background color to the specified color.
Discussion
A view’s background is the area displayed to either side of a PDF document’s pages. The background also appears between pages when page breaks are enabled. The default color is a 50% gray.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.htakePasswordFrom:
A convenience method that calls – [[self document] setpassword:] with the password from the specified sender.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hvisiblePages
Returns an array of PDFPage objects that represent the currently visible pages.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hzoomIn:
Zooms in by increasing the scaling factor.
Discussion
Each invocation of zoomIn muliplies the scaling factor by the square root of 2.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hzoomOut:
Zooms out by decreasing the scaling factor.
Discussion
Each invocation of zoomOut divides the scaling factor by the square root of 2.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hDelegate Methods
PDFViewOpenPDF:forRemoteGoToAction:
Delegate method that opens a specified page.
Discussion
A delegate responding to this method is called to handle clicks in an annotation that contains a PDFActionRemoteGoTo action. Such an action contains a URL, a page index, and a point. The delegate should open the PDF document specified by the URL and go to the specified page and point. An easy way to do this is to create a PDFDocument object with the specified URL and then create a PDFDestination object with the specified page and point. Then, you can call goToDestination:.
The default implementation of this method beeps.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hPDFViewPerformFind:
Delegate method that performs a find operation.
Discussion
Some PDFAction objects request a PDF viewer application to perform a find operation. A delegate responding to this method is called when users click an annotation with such an action.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hPDFViewPerformGoToPage:
Delegate method that performs a go-to operation.
Discussion
Some PDFAction objects request a PDF viewer application to display a panel that allows users to enter a page number to go to. A delegate responding to this method is called when users click an annotation with such an action.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hPDFViewPerformPrint:
Delegate method that prints the current document.
Discussion
Some PDFAction objects request a PDF viewer application to print the current document. A delegate responding to this method is called when users click an annotation with such an action.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hPDFViewPrintJobTitle:
Delegate method that overrides the job title used when the PDFView is printed.
Discussion
By default, this method uses the string, if any, associated with the “Title” key in the view’s PDFDocument attribute dictionary. If there is no such string, this method uses the last path component if the document is URL-based.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hPDFViewWillChangeScaleFactor:toScale:
Delegate method for overriding changes to scale factor.
Discussion
By default, the scale factor is restricted to a range between 0.1 and 10.0 inclusive.
Availability
- Available in OS X v10.4 and later.
See Also
Declared In
PDFView.hPDFViewWillClickOnLink:withURL:
Delegate method for handling clicks on URL links in a view.
Discussion
By default, this method calls [[NSWorkspace sharedWorkspace] openURL:url].
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hConstants
PDF views use the following display mode constants:
The following constants apply to mouse position over PDF view areas. These constants are components of a bit field and may be combined arbitrarily:
Notifications
A PDFView object posts the following notifications:
PDFViewChangedHistoryNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hPDFViewDocumentChangedNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hPDFViewPageChangedNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hPDFViewScaleChangedNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hPDFViewAnnotationHitNotification
The notification object is the PDFView object itself.
Use the @"PDFAnnotationHit" key to obtain userinfo of type PDFAnnotation *.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hPDFViewCopyPermissionNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hPDFViewPrintPermissionNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.4 and later.
Declared In
PDFView.hPDFViewAnnotationWillHitNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hPDFViewSelectionChangedNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hPDFViewDisplayModeChangedNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.hPDFViewDisplayBoxChangedNotification
The notification object is the PDFView object itself.
Availability
- Available in OS X v10.5 and later.
Declared In
PDFView.h© 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-12-11)