removeColumn (View - Java)

Removes a column.

Note: This method is new with Release 6.5.

Defined in

View

Syntax

public void removeColumn()
    throws NotesException
public void removeColumn(String columntitle)
    throws NotesException
public void removeColumn(int columnindex)
    throws NotesException

Parameters

String columntitle

The title of the column. Defaults to the last column.

int columnindex

The position of the column. Defaults to the last column.

Usage

Positioning is 1-based. This differs from the vector returned by Columns, which is 0-based.

Example