'宣言 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;