Share via


NSTextView.WillChangeNotifyingTextViewNotification Property

Definition

Notification constant for WillChangeNotifyingTextView

[Foundation.Advice("Use NSTextView.Notifications.ObserveWillChangeNotifyingTextView helper method instead.")]
[Foundation.Field("NSTextViewWillChangeNotifyingTextViewNotification", "AppKit")]
public static Foundation.NSString WillChangeNotifyingTextViewNotification { get; }
[<Foundation.Advice("Use NSTextView.Notifications.ObserveWillChangeNotifyingTextView helper method instead.")>]
[<Foundation.Field("NSTextViewWillChangeNotifyingTextViewNotification", "AppKit")>]
static member WillChangeNotifyingTextViewNotification : Foundation.NSString

Property Value

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

Attributes

Remarks

This constant can be used with NSNotificationCenter to register a listener for this notification. 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.

To subscribe to this notification, developers can use the convenience ObserveWillChangeNotifyingTextView(NSObject, EventHandler<NSTextViewWillChangeNotifyingTextViewEventArgs>) or ObserveWillChangeNotifyingTextView(EventHandler<NSTextViewWillChangeNotifyingTextViewEventArgs>) methods, which offers strongly typed access to the parameters of the notification.

The following example shows how to use the strongly typed NSTextView.Notifications class, to take the guesswork out of the available properties in the notification:

//
// Lambda style
//

// listening
notification = NSTextView.Notifications.ObserveWillChangeNotifyingTextView ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
});

// To stop listening:
notification.Dispose ();

//
// Method style
//
NSObject notification;
void Callback (object sender, NSTextView.NSTextViewWillChangeNotifyingTextViewEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);
}

void Setup ()
{
    notification = NSTextView.Notifications.ObserveWillChangeNotifyingTextView (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

The following example shows how to use the notification with the DefaultCenter API:

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

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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (NSTextView.WillChangeNotifyingTextViewNotification, Callback);
}

Applies to