Click or drag to resize

ColumnCommandsExtractPropertiesFromString Method

This function searches for patterns like aaa=bbb in the provided string. If it finds such a item, it creates a column named aaa and stores the value bbb at the same position in it as in the text column.

Namespace: Altaxo.Worksheet.Commands
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void ExtractPropertiesFromString(
	string strg,
	DataColumnCollection store,
	int index
)

Parameters

strg  String
The string where to search for the patterns described above.
store  DataColumnCollection
The column collection where to store the newly created columns of properties.
index  Int32
The index into the column where to store the property value.
See Also