Creates a new HeaderCard to accommodate key, val, and comment, and adds the new card to the end of the HeaderCard list


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

Syntax

Visual Basic (Declaration)
Public Overridable Sub AddValue( _ 
   ByVal key As String,  _ 
   ByVal val As Single,  _ 
   ByVal comment As String _ 
)
C#
public virtual void AddValue(
   string key,
   float val,
   string comment
)
C++
public:
 virtual void AddValue(
   String key,
   float val,
   String comment
)
J#
public virtual void AddValue(
   string key,
   float val,
   string comment
)
JScript
public virtual  function AddValue(
   key : String,
   val : float,
   comment : String
)

Parameters

key
The key of the new HeaderCard
val
The value of the new HeaderCard
comment
The comment of the new HeaderCard

See Also