remove method

This method removes one or more columns in a table.

Defined in

TextTableColumns

Syntax

public void remove()  throws SymphonyException
public void remove(int beginIdx)  throws SymphonyException
public void remove(int beginIdx, int count) throws SymphonyException

Parameters

int beginIdx

Specifies the index of the first column to be removed, starting at 1.

int count

Specifies the number of columns to be removed. The default value is 1. If the number of columns is out of bounds, this method throws an exception.

The remove() method removes the last column.

See examples

Example: remove method