NexusImporterCreateDoubleDataColumn Method |
Creates a double data column with a specified name. If a column with the name already exists, a postfix number is appended to the name to ensure a unique column name.
Namespace: Altaxo.Serialization.HDF5.NexusAssembly: AltaxoDom (in AltaxoDom.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax public static (DoubleColumn column, int? numberPostfix) CreateDoubleDataColumn(
string columnName,
ColumnKind kind,
int groupNumber,
DataTable table,
Dictionary<string, int> columnNameDictionary
)
Parameters
- columnName String
- Name of the column.
- kind ColumnKind
- The kind.
- groupNumber Int32
- The group number.
- table DataTable
- The table.
- columnNameDictionary DictionaryString, Int32
- The column name dictionary.
Return Value
ValueTupleDoubleColumn,
NullableInt32The created data column and the postfix that was used. The postfix number can be used for instance to create an error column with a correspondending name.
See Also