Replace a row in the table.


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

Syntax

Visual Basic (Declaration)
Public Sub SetRow( _ 
   ByVal row As Integer,  _ 
   ByVal data As Array _ 
) _
    Implements TableData.SetRow
C#
public void SetRow(
   int row,
   Array data
)
C++
public:
 void SetRow(
   int row,
   Array data
) sealed 
J#
public void SetRow(
   int row,
   Array data
)
JScript
public  function SetRow(
   row : int,
   data : Array
)

Parameters

row
The index of the row to be replaced.
data
The new values for the row.

Implements

TableData.SetRow

Exceptions

Exception TypeCondition
FitsException Thrown if the new row cannot match the existing data. (broken link "!:") FitsException Thrown if the new row cannot match the existing data.

See Also