Set a column with the data aleady flattened.


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

Syntax

Visual Basic (Declaration)
Public Sub SetFlattenedColumn( _ 
   ByVal col As Integer,  _ 
   ByVal data As Object _ 
)
C#
public void SetFlattenedColumn(
   int col,
   object data
)
C++
public:
 void SetFlattenedColumn(
   int col,
   Object data
) sealed 
J#
public void SetFlattenedColumn(
   int col,
   object data
)
JScript
public  function SetFlattenedColumn(
   col : int,
   data : Object
)

Parameters

col
The index of the column to be replaced.
data
The new data array. This should be a one-d primitive array.

Exceptions

Exception TypeCondition
FitsException Thrown if the type of length of the replacement data differs from the original. (broken link "!:") FitsException Thrown if the type of length of the replacement data differs from the original.

See Also