Creates a new HeaderCard to accommodate comment, and inserts the new HeaderCard in front of posCard in the HeaderCard list. If posCard is null, the new HeaderCard is added to the end of the list.


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

Syntax

Visual Basic (Declaration)
Public Overridable Sub InsertHistory( _ 
   ByVal history As String,  _ 
   ByVal posCard As HeaderCard _ 
)
C#
public virtual void InsertHistory(
   string history,
   HeaderCard posCard
)
C++
public:
 virtual void InsertHistory(
   String history,
   HeaderCard posCard
)
J#
public virtual void InsertHistory(
   string history,
   HeaderCard posCard
)
JScript
public virtual  function InsertHistory(
   history : String,
   posCard : HeaderCard
)

Parameters

history
The history of the new HeaderCard
posCard
The HeaderCard in front of which the new HeaderCard is to be inserted

See Also