Replace a single element within the table.


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

Syntax

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

Parameters

i
The row of the data.
j
The column of the data.
o
The replacement data.

Implements

TableData.SetElement

Exceptions

Exception TypeCondition
TableException Thrown when the new data is not of the same type as the data it replaces. (broken link "!:") TableException Thrown when the new data is not of the same type as the data it replaces.

See Also