Add an HDU to the Fits object. Users may intermix calls to functions which read HDUs from an associated input stream with the addHDU and insertHDU calls, but should be careful to understand the consequences.


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

Syntax

Visual Basic (Declaration)
Public Overridable Sub AddHDU( _ 
   ByVal myHDU As BasicHDU _ 
)
C#
public virtual void AddHDU(
   BasicHDU myHDU
)
C++
public:
 virtual void AddHDU(
   BasicHDU myHDU
)
J#
public virtual void AddHDU(
   BasicHDU myHDU
)
JScript
public virtual  function AddHDU(
   myHDU : BasicHDU
)

Parameters

myHDU
The HDU to be added to the end of the FITS object.

See Also