Delete a set of columns from a table.


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

Syntax

Visual Basic (Declaration)
Public Sub DeleteColumnsIndexOne( _ 
   ByVal column As Integer,  _ 
   ByVal len As Integer,  _ 
   ByVal fields As String() _ 
)
C#
public void DeleteColumnsIndexOne(
   int column,
   int len,
   string[] fields
)
C++
public:
 void DeleteColumnsIndexOne(
   int column,
   int len,
   array<String>^ fields
) sealed 
J#
public void DeleteColumnsIndexOne(
   int column,
   int len,
   string[] fields
)
JScript
public  function DeleteColumnsIndexOne(
   column : int,
   len : int,
   fields : String[]
)

Parameters

column
The one-indexed start column.
len
The number of columns to delete.
fields
Stems for the header fields to be removed for the table.

See Also