Compartilhar via


PdfView.ChangedHistoryNotification Propriedade

Definição

Constante de notificação para ChangedHistory

[Foundation.Advice("Use PdfView.Notifications.ObserveChangedHistory helper method instead.")]
[Foundation.Field("PDFViewChangedHistoryNotification", "PDFKit")]
public static Foundation.NSString ChangedHistoryNotification { get; }
[Foundation.Advice("Use PdfView.Notifications.ObserveChangedHistory helper method instead.")]
[Foundation.Field("PDFViewChangedHistoryNotification", "Quartz")]
public static Foundation.NSString ChangedHistoryNotification { get; }
member this.ChangedHistoryNotification : Foundation.NSString

Valor da propriedade

Constante NSString, deve ser usada como um token para NSNotificationCenter.

Atributos

Comentários

Essa constante pode ser usada com o NSNotificationCenter para registrar um ouvinte para essa notificação, além disso, os desenvolvedores podem usar a notificação ObserveChangedHistory fortemente tipada. Esse é um NSString em vez de uma cadeia de caracteres, pois esses valores podem ser usados como tokens em algumas bibliotecas nativas em vez de serem usados puramente para seu conteúdo de cadeia de caracteres real. O parâmetro 'notification' para o retorno de chamada contém informações extras específicas para o tipo de notificação.

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


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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (PdfView.ChangedHistoryNotification, Callback);
}

Aplica-se a