PdfDocument.DidBeginPageFindNotification Property

Definition

Notification constant for DidBeginPageFind

[Foundation.Advice("Use PdfDocument.Notifications.ObserveDidBeginPageFind helper method instead.")]
[Foundation.Field("PDFDocumentDidBeginPageFindNotification", "PDFKit")]
public static Foundation.NSString DidBeginPageFindNotification { get; }
[Foundation.Advice("Use PdfDocument.Notifications.ObserveDidBeginPageFind helper method instead.")]
[Foundation.Field("PDFDocumentDidBeginPageFindNotification", "Quartz")]
public static Foundation.NSString DidBeginPageFindNotification { get; }
member this.DidBeginPageFindNotification : Foundation.NSString

Property Value

NSString constant, should be used as a token to NSNotificationCenter.

Attributes

Remarks

This constant can be used with the NSNotificationCenter to register a listener for this notification, also developers can use the strongly typed notification ObserveDidBeginPageFind instead. This is an NSString instead of a string, because these values can be used as tokens in some native libraries instead of being used purely for their actual string content. The 'notification' parameter to the callback contains extra information that is specific to the notification type.

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


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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (PdfDocument.DidBeginPageFindNotification, Callback);
}

Applies to