| 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 |
| Related sample code |
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.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedNextPageThe Next Page action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedPreviousPageThe Previous Page action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedFirstPageThe First Page action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedLastPageThe Last Page action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedGoBackThe Go Back action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedGoForwardThe Go Forward action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedGoToPageThe Go to Page action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedFindThe Find action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedPrintThe Print action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedZoomInThe Zoom In action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
kPDFActionNamedZoomOutThe Zoom Out action.
Available in Mac OS X v10.5 and later.
Declared in PDFActionNamed.h.
PDFActionNamed.hLast updated: 2007-12-11