| Inherits from | |
| Conforms to | |
| Framework | Library/Frameworks/Quartz.framework/Frameworks/PDFKit.framework |
| Availability | Available in Mac OS X v10.5 and later.
|
| Declared in | PDFActionNamed.h |
PDFActionNamed defines methods used to work with actions in PDF documents, some of which are named in the Adobe PDF Specification.
A PDFActionNamed object represents an action with a defined name, such as “Go back” or “Zoom in.“
Initializes the PDFActionName object with the specified named action.
- (id)initWithName:(PDFActionNamedName)name
The action name used to initialize the named action.
An initialized PDFActionNamed instance, or NULL if the object could not be initialized.
See “Named Action Names” for the names of named actions you can specify.
PDFActionNamed.hReturns the name of the named action.
- (PDFActionNamedName)name
The name of the named action.
– setNamePDFActionNamed.hSets the name of the named action.
- (void)setName:(PDFActionNamedName)name
The action name to which to set the named action.
See “Named Action Names” for the names of named actions you can specify.
– namePDFActionNamed.hNames of supported actions.
enum { kPDFActionNamedNone = 0,
kPDFActionNamedNextPage = 1,
kPDFActionNamedPreviousPage = 2,
kPDFActionNamedFirstPage = 3,
kPDFActionNamedLastPage = 4,
kPDFActionNamedGoBack = 5,
kPDFActionNamedGoForward = 6,
kPDFActionNamedGoToPage = 7,
kPDFActionNamedFind = 8,
kPDFActionNamedPrint = 9,
kPDFActionNamedZoomIn = 10,
kPDFActionNamedZoomOut = 11 };
kPDFActionNamedNoneThe action has no name.
kPDFActionNamedNextPageThe Next Page action.
kPDFActionNamedPreviousPageThe Previous Page action.
kPDFActionNamedFirstPageThe First Page action.
kPDFActionNamedLastPageThe Last Page action.
kPDFActionNamedGoBackThe Go Back action.
kPDFActionNamedGoForwardThe Go Forward action.
kPDFActionNamedGoToPageThe Go to Page action.
kPDFActionNamedFindThe Find action.
kPDFActionNamedPrintThe Print action.
kPDFActionNamedZoomInThe Zoom In action.
kPDFActionNamedZoomOutThe Zoom Out action.
PDFActionNamed.h
Last updated: 2007-12-11