Share via


NSOutlineView.Notifications Class

Definition

Notifications posted by the NSOutlineView class.

public static class NSOutlineView.Notifications
type NSOutlineView.Notifications = class
Inheritance
NSOutlineView.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
ObserveColumnDidMove(EventHandler<NSViewColumnMoveEventArgs>)

Strongly typed notification for the ColumnDidMoveNotification constant.

ObserveColumnDidMove(NSObject, EventHandler<NSViewColumnMoveEventArgs>)

Strongly typed notification for the ColumnDidMoveNotification constant.

ObserveColumnDidResize(EventHandler<NSViewColumnResizeEventArgs>)

Strongly typed notification for the ColumnDidResizeNotification constant.

ObserveColumnDidResize(NSObject, EventHandler<NSViewColumnResizeEventArgs>)

Strongly typed notification for the ColumnDidResizeNotification constant.

ObserveItemDidCollapse(EventHandler<NSOutlineViewItemEventArgs>)

Strongly typed notification for the ItemDidCollapseNotification constant.

ObserveItemDidCollapse(NSObject, EventHandler<NSOutlineViewItemEventArgs>)

Strongly typed notification for the ItemDidCollapseNotification constant.

ObserveItemDidExpand(EventHandler<NSOutlineViewItemEventArgs>)

Strongly typed notification for the ItemDidExpandNotification constant.

ObserveItemDidExpand(NSObject, EventHandler<NSOutlineViewItemEventArgs>)

Strongly typed notification for the ItemDidExpandNotification constant.

ObserveItemWillCollapse(EventHandler<NSOutlineViewItemEventArgs>)

Strongly typed notification for the ItemWillCollapseNotification constant.

ObserveItemWillCollapse(NSObject, EventHandler<NSOutlineViewItemEventArgs>)

Strongly typed notification for the ItemWillCollapseNotification constant.

ObserveItemWillExpand(EventHandler<NSOutlineViewItemEventArgs>)

Strongly typed notification for the ItemWillExpandNotification constant.

ObserveItemWillExpand(NSObject, EventHandler<NSOutlineViewItemEventArgs>)

Strongly typed notification for the ItemWillExpandNotification constant.

ObserveSelectionDidChange(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the SelectionDidChangeNotification constant.

ObserveSelectionDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the SelectionDidChangeNotification constant.

ObserveSelectionIsChanging(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the SelectionIsChangingNotification constant.

ObserveSelectionIsChanging(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the SelectionIsChangingNotification constant.

Applies to