Get the float value associated with the given key.


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

Syntax

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

Parameters

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

See Also