MonoMac.AppKit.NSScroller.NSPreferredScrollerStyleDidChangeNotification Property
Notification constant for NSPreferredScrollerStyleDidChange

Syntax

public static MonoMac.Foundation.NSString NSPreferredScrollerStyleDidChangeNotification { get; }

Value

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

Remarks

This constant can be used with the MonoMac.Foundation.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.

c# Example

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


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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (NSScroller.NSPreferredScrollerStyleDidChangeNotification, Callback);
}

Requirements

Namespace: MonoMac.AppKit
Assembly: XamMac (in XamMac.dll)
Assembly Versions: 0.0.0.0