Creates a new HeaderCard to accommodate comment, and inserts the new card in the pos'th position in the HeaderCard list. If pos is out of the bounds of the list, the new HeaderCard will be 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 pos As Integer _ 
)
C#
public virtual void InsertHistory(
   string history,
   int pos
)
C++
public:
 virtual void InsertHistory(
   String history,
   int pos
)
J#
public virtual void InsertHistory(
   string history,
   int pos
)
JScript
public virtual  function InsertHistory(
   history : String,
   pos : int
)

Parameters

history
The history of the new HeaderCard
pos
The list position into which to insert the new HeaderCard

See Also