Partager via


PdfThumbnailView.DocumentEditedNotification Propriété

Définition

Constante de notification pour DocumentEdited

[Foundation.Advice("Use PdfThumbnailView.Notifications.ObserveDocumentEdited helper method instead.")]
[Foundation.Field("PDFThumbnailViewDocumentEditedNotification", "PDFKit")]
public static Foundation.NSString DocumentEditedNotification { get; }
[Foundation.Advice("Use PdfThumbnailView.Notifications.ObserveDocumentEdited helper method instead.")]
[Foundation.Field("PDFThumbnailViewDocumentEditedNotification", "Quartz")]
public static Foundation.NSString DocumentEditedNotification { get; }
member this.DocumentEditedNotification : Foundation.NSString

Valeur de propriété

La constante NSString doit être utilisée comme jeton pour NSNotificationCenter.

Attributs

Remarques

Cette constante peut être utilisée avec pour NSNotificationCenter inscrire un écouteur pour cette notification. Les développeurs peuvent également utiliser la notification ObserveDocumentEdited fortement typée à la place. Il s’agit d’un NSString au lieu d’une chaîne, car ces valeurs peuvent être utilisées comme jetons dans certaines bibliothèques natives au lieu d’être utilisées uniquement pour leur contenu de chaîne réel. Le paramètre « notification » du rappel contient des informations supplémentaires spécifiques au type de notification.

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        PdfThumbnailView.DocumentEditedNotification, (notification) => {Console.WriteLine ("Received the notification PdfThumbnailView", notification); }


// Method style
void Callback (NSNotification notification)
{
    Console.WriteLine ("Received a notification PdfThumbnailView", notification);
}

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (PdfThumbnailView.DocumentEditedNotification, Callback);
}

S’applique à