UIDocumentInteractionProbe Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A delegate signature for determining whether a document operation should take place.
public delegate bool UIDocumentInteractionProbe(UIDocumentInteractionController controller, Selector action);
type UIDocumentInteractionProbe = delegate of UIDocumentInteractionController * Selector -> bool
Parameters
- controller
- UIDocumentInteractionController
The controller sending the message.
- action
- Selector
The action that is being probed.
Return Value
Whether the action should take place or not.
Remarks
Used by the UIDocumentInteractionController for the CanPerformAction and PerformAction hooks.