Click or drag to resize

DataTableClipboardMemento Constructor

Constructor. Besides the table, the current selections must be provided. Only the areas that corresponds to the selections are serialized. The serialization process has to occur immediately after this constructor, because only a reference to the table is hold by this object.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public ClipboardMemento(
	DataTable table,
	IAscendingIntegerCollection selectedDataColumns,
	IAscendingIntegerCollection selectedDataRows,
	IAscendingIntegerCollection selectedPropertyColumns,
	IAscendingIntegerCollection selectedPropertyRows
)

Parameters

table  DataTable
The table to serialize.
selectedDataColumns  IAscendingIntegerCollection
The selected data columns.
selectedDataRows  IAscendingIntegerCollection
The selected data rows.
selectedPropertyColumns  IAscendingIntegerCollection
The selected property columns.
selectedPropertyRows  IAscendingIntegerCollection
The selected property rows.
See Also