Click or drag to resize

DataColumnCollectionClipboardMemento 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(
	DataColumnCollection collection,
	IAscendingIntegerCollection selectedColumns,
	IAscendingIntegerCollection selectedRows,
	bool useOnlySelections
)

Parameters

collection  DataColumnCollection
The collection to serialize.
selectedColumns  IAscendingIntegerCollection
The selected data columns.
selectedRows  IAscendingIntegerCollection
The selected data rows.
useOnlySelections  Boolean
If true, only the selections are serialized. If false and there is no selection, the whole collection is serialized.
See Also