ColumnAccessor class

Provides access to a ListView column, which is the visual presentation of a field.

Remarks

A SharePoint "field" (SPField) defines the data storage for a property of a list item. (If the list item represents a document, then the field is sometimes called a "property".)

A "column" is the visual presentation of a field, when displayed by the ListView.

The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the ColumnAccessor class.

Properties

field

The server-side definition of the field. This property is read-only.

visible

Whether to show this column in the list view. This property is read-only.

Property Details

field

The server-side definition of the field. This property is read-only.

abstract get field(): SPField;

Property Value

visible

Whether to show this column in the list view. This property is read-only.

abstract get visible(): boolean;

Property Value

boolean