Replace a column in the table.


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

Syntax

Visual Basic (Declaration)
Public Sub SetColumn( _ 
   ByVal col As Integer,  _ 
   ByVal xcol As Object _ 
) _
    Implements TableData.SetColumn
C#
public void SetColumn(
   int col,
   object xcol
)
C++
public:
 void SetColumn(
   int col,
   Object xcol
) sealed 
J#
public void SetColumn(
   int col,
   object xcol
)
JScript
public  function SetColumn(
   col : int,
   xcol : Object
)

Parameters

col
The index of the column to be replaced.
xcol
The new data for the column

Implements

TableData.SetColumn

Exceptions

Exception TypeCondition
FitsException Thrown if the data does not match the current column description. (broken link "!:") FitsException Thrown if the data does not match the current column description.

See Also