PdfThumbnailView.DocumentEditedNotification Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Constante de notificação para 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
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 ObserveDocumentEdited 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 (
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);
}