Version

Values Property

Returns a collection of the unconverted values to be used as the source for the clipboard operation.
Syntax
'Declaration
 
Public ReadOnly Property Values As CellValueHolderCollection
public CellValueHolderCollection Values {get;}
Remarks

During a cut/copy operation, this will be populated with the current values of the cells. To control the text that will be put onto the clipboard for a given cell, you can modify the associated Infragistics.Windows.DataPresenter.CellValueHolder setting the Infragistics.Windows.DataPresenter.CellValueHolder.Value to the text representation and the Infragistics.Windows.DataPresenter.CellValueHolder.IsDisplayText to true.

During a paste operation, this will be populated with the display text values from the information in the clipboard. To control the parsed value that will be used to update the Cell's Infragistics.Windows.DataPresenter.Cell.Value, you can modify the associated CellValueHolder setting the Value to the value you want to have set on the Cell and the IsDisplayText to false to indicate that the value provided is the parsed cell value.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also