Partager via


PdfView.Notifications.ObserveVisiblePagesChanged Méthode

Définition

Surcharges

ObserveVisiblePagesChanged(EventHandler<NSNotificationEventArgs>)

Notification fortement typée pour la VisiblePagesChangedNotification constante.

ObserveVisiblePagesChanged(NSObject, EventHandler<NSNotificationEventArgs>)

Notification fortement typée pour la VisiblePagesChangedNotification constante.

ObserveVisiblePagesChanged(EventHandler<NSNotificationEventArgs>)

Notification fortement typée pour la VisiblePagesChangedNotification constante.

public static Foundation.NSObject ObserveVisiblePagesChanged (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveVisiblePagesChanged : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Paramètres

handler
EventHandler<NSNotificationEventArgs>

Méthode à appeler lorsque la notification est publiée.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

Cette méthode peut être utilisée pour VisiblePagesChangedNotification s’abonner aux notifications.

// Listen to all notifications posted for any object
var token = PdfView.Notifications.ObserveVisiblePagesChanged ((notification) => {
	Console.WriteLine ("Observed VisiblePagesChangedNotification!");
};

// Listen to all notifications posted for a single object
var token = PdfView.Notifications.ObserveVisiblePagesChanged (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed VisiblePagesChangedNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

S’applique à

ObserveVisiblePagesChanged(NSObject, EventHandler<NSNotificationEventArgs>)

Notification fortement typée pour la VisiblePagesChangedNotification constante.

public static Foundation.NSObject ObserveVisiblePagesChanged (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveVisiblePagesChanged : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Paramètres

objectToObserve
NSObject

Objet à observer.

handler
EventHandler<NSNotificationEventArgs>

Méthode à appeler lorsque la notification est publiée.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

Cette méthode peut être utilisée pour VisiblePagesChangedNotification s’abonner aux notifications.

// Listen to all notifications posted for any object
var token = PdfView.Notifications.ObserveVisiblePagesChanged ((notification) => {
	Console.WriteLine ("Observed VisiblePagesChangedNotification!");
};

// Listen to all notifications posted for a single object
var token = PdfView.Notifications.ObserveVisiblePagesChanged (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed VisiblePagesChangedNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

S’applique à