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

Syntax

Visual Basic (Declaration)
Public Function DeleteColumns( _ 
   ByVal start As Integer,  _ 
   ByVal len As Integer _ 
) As Integer
C#
public int DeleteColumns(
   int start,
   int len
)
C++
public:
 int DeleteColumns(
   int start,
   int len
) sealed 
J#
public int DeleteColumns(
   int start,
   int len
)
JScript
public  function DeleteColumns(
   start : int,
   len : int
) : int

Parameters

start
The column (0-indexed) to be deleted.
len
The number of rows to be deleted.

Exceptions

Exception TypeCondition
TableException TableException Thrown when the new data is not of the same type as the data it replaces.

See Also