Version

AllowMultiCellOperations Property

Specifies if and which of the multi-cell operations the user is allowed to perform.
Syntax
'Declaration
 
Public Property AllowMultiCellOperations As AllowMultiCellOperation
public AllowMultiCellOperation AllowMultiCellOperations {get; set;}
Remarks

AllowMultiCellOperations specifies if and which multi-cell operation the user is allowed to perform. See AllowMultiCellOperation enum for a full listing of supported operations.

To perform any of these operations in code, use the control's PerformAction method.

Example
The following code will allow the user to Cut, Copy, and Paste grid cells. The code must be placed in the InitializeLayout event of the grid.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

' Turn on all of the Cut, Copy, and Paste functionality. 
e.Layout.Override.AllowMultiCellOperations = AllowMultiCellOperation.All
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;

// Turn on all of the Cut, Copy, and Paste functionality. 
e.Layout.Override.AllowMultiCellOperations = AllowMultiCellOperation.All;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, 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