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

Parameters

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

See Also