Click or drag to resize

DataTableClipboardMemento Constructor

Initializes a new instance of the DataTableClipboardMemento class. Besides the table, the current selections must be provided. Only the areas that correspond to the selections are serialized. The serialization process has to occur immediately after this constructor because this object only holds a reference to the table.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.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