Click or drag to resize

ColumnCommandsGetColumnIndicesWithGroupNumber Method

Gets the indices of all columns that have the group number given by the argument.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IAscendingIntegerCollection GetColumnIndicesWithGroupNumber(
	this DataColumnCollection datacoll,
	int nGroup
)

Parameters

datacoll  DataColumnCollection
The data column collection to which to apply this procedure.
nGroup  Int32
The group number to search for.

Return Value

IAscendingIntegerCollection
The indices of all columns that have the group number given by the argument.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DataColumnCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also