PdfView.AnnotationHitNotification Property
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.
Notification constant for AnnotationHit
[Foundation.Advice("Use PdfView.Notifications.ObserveAnnotationHit helper method instead.")]
[Foundation.Field("PDFViewAnnotationHitNotification", "PDFKit")]
public static Foundation.NSString AnnotationHitNotification { get; }
[Foundation.Advice("Use PdfView.Notifications.ObserveAnnotationHit helper method instead.")]
[Foundation.Field("PDFViewAnnotationHitNotification", "Quartz")]
public static Foundation.NSString AnnotationHitNotification { get; }
[<Foundation.Advice("Use PdfView.Notifications.ObserveAnnotationHit helper method instead.")>]
[<Foundation.Field("PDFViewAnnotationHitNotification", "PDFKit")>]
static member AnnotationHitNotification : Foundation.NSString
[<Foundation.Advice("Use PdfView.Notifications.ObserveAnnotationHit helper method instead.")>]
[<Foundation.Field("PDFViewAnnotationHitNotification", "Quartz")>]
static member AnnotationHitNotification : Foundation.NSString
Property Value
NSString constant, should be used as a token to NSNotificationCenter.
- Attributes
Remarks
This constant can be used with NSNotificationCenter to register a listener for this notification. This is an NSString instead of a string, because these values can be used as tokens in some native libraries instead of being used purely for their actual string content. The 'notification' parameter to the callback contains extra information that is specific to the notification type.
To subscribe to this notification, developers can use the convenience ObserveAnnotationHit(NSObject, EventHandler<PdfViewAnnotationHitEventArgs>) or ObserveAnnotationHit(EventHandler<PdfViewAnnotationHitEventArgs>) methods, which offers strongly typed access to the parameters of the notification.
The following example shows how to use the strongly typed PdfView.Notifications class, to take the guesswork out of the available properties in the notification:
//
// Lambda style
//
// listening
notification = PdfView.Notifications.ObserveAnnotationHit ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
});
// To stop listening:
notification.Dispose ();
//
// Method style
//
NSObject notification;
void Callback (object sender, PdfView.PdfViewAnnotationHitEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
}
void Setup ()
{
notification = PdfView.Notifications.ObserveAnnotationHit (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
The following example shows how to use the notification with the DefaultCenter API:
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
PdfView.AnnotationHitNotification, (notification) => { Console.WriteLine ("Received the notification AnnotationHit", notification); }
);
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received the notification AnnotationHit", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (PdfView.AnnotationHitNotification, Callback);
}