PdfView.Notifications.ObserveAnnotationHit Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
ObserveAnnotationHit(EventHandler<PdfViewAnnotationHitEventArgs>) |
Notifica fortemente tipizzata per la AnnotationHitNotification costante. |
ObserveAnnotationHit(NSObject, EventHandler<PdfViewAnnotationHitEventArgs>) |
Notifica fortemente tipizzata per la AnnotationHitNotification costante. |
ObserveAnnotationHit(EventHandler<PdfViewAnnotationHitEventArgs>)
Notifica fortemente tipizzata per la AnnotationHitNotification costante.
public static Foundation.NSObject ObserveAnnotationHit (EventHandler<PdfKit.PdfViewAnnotationHitEventArgs> handler);
static member ObserveAnnotationHit : EventHandler<PdfKit.PdfViewAnnotationHitEventArgs> -> Foundation.NSObject
Parametri
Metodo da richiamare quando viene inviata la notifica.
Restituisce
Oggetto token che può essere usato per interrompere la ricezione delle notifiche eliminandolo o passandolo a RemoveObservers(IEnumerable<NSObject>)
Commenti
L'esempio seguente illustra come gli sviluppatori possono usare questo metodo nel codice:
//
// Lambda style
//
// listening
notification = PdfView.Notifications.ObserveAnnotationHit ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("AnnotationHit", args.AnnotationHit);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, PdfKit.PdfViewAnnotationHitEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("AnnotationHit", args.AnnotationHit);
}
void Setup ()
{
notification = PdfView.Notifications.ObserveAnnotationHit (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Si applica a
ObserveAnnotationHit(NSObject, EventHandler<PdfViewAnnotationHitEventArgs>)
Notifica fortemente tipizzata per la AnnotationHitNotification costante.
public static Foundation.NSObject ObserveAnnotationHit (Foundation.NSObject objectToObserve, EventHandler<PdfKit.PdfViewAnnotationHitEventArgs> handler);
static member ObserveAnnotationHit : Foundation.NSObject * EventHandler<PdfKit.PdfViewAnnotationHitEventArgs> -> Foundation.NSObject
Parametri
- objectToObserve
- NSObject
Oggetto da osservare.
Metodo da richiamare quando viene inviata la notifica.
Restituisce
Oggetto token che può essere usato per interrompere la ricezione delle notifiche eliminandolo o passandolo a RemoveObservers(IEnumerable<NSObject>)
Commenti
Questo metodo può essere usato per sottoscrivere AnnotationHitNotification le notifiche.
// Listen to all notifications posted for any object
var token = PdfView.Notifications.ObserveAnnotationHit ((notification) => {
Console.WriteLine ("Observed AnnotationHitNotification!");
};
// Listen to all notifications posted for a single object
var token = PdfView.Notifications.ObserveAnnotationHit (objectToObserve, (notification) => {
Console.WriteLine ($"Observed AnnotationHitNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();