Add a column without any associated header information.


Namespace: nom.tam.fits
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Function AddColumn( _ 
   ByVal data As Object _ 
) As Integer
C#
public override int AddColumn(
   object data
)
C++
public:
 virtual int AddColumn(
   Object data
) override 
J#
public override int AddColumn(
   object data
)
JScript
public override  function AddColumn(
   data : Object
) : int

Parameters

data
The column data to be added. Data should be an Object[] where type of all of the constituents is identical. The length of data should match the other columns. Note: It is valid for data to be a 2 or higher dimensionality primitive array. In this case the column index is the first index of the array. E.g., if called with int[30][20][10], the number of rows in the table should be 30 and this column will have elements which are 2-d integer arrays with TDIM = (10,20).

Exceptions

Exception TypeCondition
FitsException the column could not be added. (broken link "!:") FitsException the column could not be added.

See Also