Add a column where the data is already flattened.
Namespace: nom.tam.fits
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function AddFlattenedColumn( _ ByVal o As Object, _ ByVal dims As Integer() _ ) As Integer |
C# |
---|
public int AddFlattenedColumn( object o, int[] dims ) |
C++ |
---|
public: int AddFlattenedColumn( Object o, array<int>^ dims ) sealed |
J# |
---|
public int AddFlattenedColumn( object o, int[] dims ) |
JScript |
---|
public
function AddFlattenedColumn( o : Object, dims : int[] ) : int |
Parameters
- o
- The new column data. This should be a one-dimensional primitive array.
- dims
- The dimensions of one row of the column.
Exceptions
Exception Type | Condition |
---|---|
TableException | TableException Thrown when the new data is not of the same type as the data it replaces. |