バージョン

AllowMultiCellOperations プロパティ

ユーザーがマルチセルの処理できるかどうか、またはどの処理ができるかを指定します。
シンタックス
'宣言
 
Public Property AllowMultiCellOperations As AllowMultiCellOperation
public AllowMultiCellOperation AllowMultiCellOperations {get; set;}
解説

AllowMultiCellOperations は、ユーザーがマルチセル操作を実行できるかどうか、またどの操作が可能かを指定します。サポートされる操作のフルリストについては、AllowMultiCellOperation 列挙体を参照してください。

コードでこれらの操作を実行するには、コントロールの PerformAction メソッドを使用します。

使用例
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;
参照