MonobjcMonobjc Documented Class Library
NSTableViewColumnAutoresizingStyle Enumeration
NamespacesMonobjc.AppKitNSTableViewColumnAutoresizingStyle

The following constants specify the autoresizing styles. These constants are used by columnAutoresizingStyle and setColumnAutoresizingStyle:.

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public enum NSTableViewColumnAutoresizingStyle
Public Enumeration NSTableViewColumnAutoresizingStyle
public enum class NSTableViewColumnAutoresizingStyle
Members
MemberDescription
NSTableViewNoColumnAutoresizing

Disable table column autoresizing.

Available in Mac OS X v10.4 and later.


NSTableViewUniformColumnAutoresizingStyle

Autoresize all columns by distributing space equally, simultaneously.

Available in Mac OS X v10.4 and later.


NSTableViewSequentialColumnAutoresizingStyle

Autoresize each table column sequentially, from the last auto-resizable column to the first auto-resizable column; proceed to the next column when the current column has reached its minimum or maximum size.

Available in Mac OS X v10.4 and later.


NSTableViewReverseSequentialColumnAutoresizingStyle

Autoresize each table column sequentially, from the first auto-resizable column to the last auto-resizable column; proceed to the next column when the current column has reached its minimum or maximum size.

Available in Mac OS X v10.4 and later.


NSTableViewLastColumnOnlyAutoresizingStyle

Autoresize only the last table column.

When that table column can no longer be resized, stop autoresizing. Normally you should use one of the sequential autoresizing modes instead.

Available in Mac OS X v10.4 and later.


NSTableViewFirstColumnOnlyAutoresizingStyle

Autoresize only the first table column.

When that table column can no longer be resized, stop autoresizing. Normally you should use one of the sequential autoresizing modes instead.

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)