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 InsertComment( _ 
   ByVal comment As String,  _ 
   ByVal pos As Integer _ 
)
C#
public virtual void InsertComment(
   string comment,
   int pos
)
C++
public:
 virtual void InsertComment(
   String comment,
   int pos
)
J#
public virtual void InsertComment(
   string comment,
   int pos
)
JScript
public virtual  function InsertComment(
   comment : String,
   pos : int
)

Parameters

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

See Also