Click or drag to resize

CreateSpectrumFrom Enumeration

Creates a spectrum either from a row or from a column.

Namespace: Altaxo.Serialization.Galactic.Options
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public enum CreateSpectrumFrom
Members
Member nameValueDescription
Row0The y-values of one spectrum stem from one single table row.
Column1The y-values of one spectrum stem from one single table column.

The CreateSpectrumFrom type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
Remarks
Choosing to create a spectrum from a row means the values of a single table row, or parts of it, are used to create a spectrum, i.e. the y-values of the spectrum. In this case the x-values can come from a numeric property column.

Creating a spectrum from a column (or parts of a column, i.e. some rows of it) means the y-values of the spectrum stem from a single column of the data table. The x-values of the spectrum then have to come from another (numeric) column of the table.

See Also