MonobjcMonobjc Documented Class Library
NSResizingMode Enumeration
NamespacesMonobjc.AppKitNSResizingMode

These constants specify the resizing modes available for the table column. You specify either NSTableColumnNoResizing or a resizing mask created using the C bitwise OR operator. These values are then passed as the parameter to the setResizingMask: method.

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public enum NSResizingMode
Public Enumeration NSResizingMode
public enum class NSResizingMode
Members
MemberDescription
NSTableColumnNoResizing

Prevents the table column from resizing.

Available in Mac OS X v10.4 and later.


NSTableColumnAutoresizingMask

Allows the table column to resize automatically in response to resizing the tableview. Enabling this option is the same as enabling the "Live Resizable" option in Interface Builder. The resizing behavior for the table view is set using the NSTableView method setColumnAutoresizingStyle:.

Available in Mac OS X v10.4 and later.


NSTableColumnUserResizingMask

Allows the table column to be resized explicitly by the user. Enabling this option is the same as enabling the "User Resizable" option in Interface Builder.

Available in Mac OS X v10.4 and later.


Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)