Get a single element as a one-d array. We return String's as arrays for consistency though they could be returned as a scalar.


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

Syntax

Visual Basic (Declaration)
Public Overridable Function GetElement( _ 
   ByVal row As Integer,  _ 
   ByVal col As Integer _ 
) As Object _
    Implements TableData.GetElement
C#
public virtual object GetElement(
   int row,
   int col
)
C++
public:
 virtual Object GetElement(
   int row,
   int col
)
J#
public virtual object GetElement(
   int row,
   int col
)
JScript
public virtual  function GetElement(
   row : int,
   col : int
) : Object

Implements

TableData.GetElement

See Also