Get the value associated with the key as an int.


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

Syntax

Visual Basic (Declaration)
Public Overridable Function GetIntValue( _ 
   ByVal key As String,  _ 
   ByVal dft As Integer _ 
) As Integer
C#
public virtual int GetIntValue(
   string key,
   int dft
)
C++
public:
 virtual int GetIntValue(
   String key,
   int dft
)
J#
public virtual int GetIntValue(
   string key,
   int dft
)
JScript
public virtual  function GetIntValue(
   key : String,
   dft : int
) : int

Parameters

key
The header key.
dft
The value to be returned if the key is not found.

See Also