Share via


NSScrollView.Notifications Class

Definition

Notifications posted by the NSScrollView class.

public static class NSScrollView.Notifications
type NSScrollView.Notifications = class
Inheritance
NSScrollView.Notifications

Remarks

This class contains various helper methods that allow developers to observe events posted in the notification hub (NSNotificationCenter).

The methods defined in this class post events that invoke the provided method or lambda with a NSNotificationEventArgs parameter, which contains strongly typed properties for the notification arguments.

Methods

Name Description
ObserveDidEndLiveMagnify(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidEndLiveMagnifyNotification constant.

ObserveDidEndLiveMagnify(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidEndLiveMagnifyNotification constant.

ObserveDidEndLiveScroll(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidEndLiveScrollNotification constant.

ObserveDidEndLiveScroll(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidEndLiveScrollNotification constant.

ObserveDidLiveScroll(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidLiveScrollNotification constant.

ObserveDidLiveScroll(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the DidLiveScrollNotification constant.

ObserveWillStartLiveMagnify(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillStartLiveMagnifyNotification constant.

ObserveWillStartLiveMagnify(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillStartLiveMagnifyNotification constant.

ObserveWillStartLiveScroll(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillStartLiveScrollNotification constant.

ObserveWillStartLiveScroll(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillStartLiveScrollNotification constant.

Applies to