Skip to main content

DataViewBase.CopyRowsToClipboard(IEnumerable<Int32>) Method

OBSOLETE

Use the CopyRowsToClipboard method instead

Copies the values displayed within the specified rows/cards to the clipboard.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

[Obsolete("Use the DataControlBase.CopyRowsToClipboard method instead")]
[Browsable(false)]
public void CopyRowsToClipboard(
    IEnumerable<int> rows
)

Parameters

Name Type Description
rows IEnumerable<Int32>

An IEnumerable<Int32> object that contains row handles.

Remarks

The CopyRowsToClipboard method does nothing if the DataControlBase.ClipboardCopyMode property is set to ClipboardCopyMode.None.

Refer to the Copy Operations topic to learn more.

See Also