CPDFDocumentDelegate Protocol Reference
Conforms to | NSObject |
---|---|
Declared in | CPDFDocument.h |
– documentDidBeginDocumentFind:
Called when the beginFindString:withOptions: or findString:withOptions: method begins finding.
- (void)documentDidBeginDocumentFind:(CPDFDocument *)document
Discussion
Called when the beginFindString:withOptions: or findString:withOptions: method begins finding.
Declared In
CPDFDocument.h
– documentDidEndDocumentFind:
Called when the beginFindString:withOptions: or findString:withOptions: method returns.
- (void)documentDidEndDocumentFind:(CPDFDocument *)document
Discussion
Called when the beginFindString:withOptions: or findString:withOptions: method returns.
Declared In
CPDFDocument.h
– documentDidBeginPageFind:pageAtIndex:
Called when a find operation begins working on a new page of a document.
- (void)documentDidBeginPageFind:(CPDFDocument *)document pageAtIndex:(NSUInteger)index
Discussion
Called when a find operation begins working on a new page of a document.
Declared In
CPDFDocument.h
– documentDidEndPageFind:pageAtIndex:
Called when a find operation finishes working on a page in a document.
- (void)documentDidEndPageFind:(CPDFDocument *)document pageAtIndex:(NSUInteger)index
Discussion
Called when a find operation finishes working on a page in a document.
Declared In
CPDFDocument.h
– documentDidFindMatch:
Called when a string match is found in a document.
- (void)documentDidFindMatch:(CPDFSelection *)selection
Discussion
Called when a string match is found in a document.
To determine the string selection found, use the selection.
Declared In
CPDFDocument.h