Share via


NSTableView.Notifications Class

Definition

Notifications posted by the NSTableView class.

public static class NSTableView.Notifications
type NSTableView.Notifications = class
Inheritance
NSTableView.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.

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