Setting max number of columns

I want to set the max number of columns in the grid to 10, which I do in properties, at design time. However, if the user pastes some data with more than 10 columns, additional columns are added to the grid. How can I prevent this from happening? I would rather that the data from extra columns was not recorded at all or an error was given. Thank you.

1 Reply

AD Administrator Syncfusion Team November 19, 2004 10:08 PM UTC

There is a property flag that controls whether or not rows/columns can be appended during a paste. //C# this.gridControl1.CutPaste.ClipboardFlags |= (GridDragDropFlags.NoAppendCols | GridDragDropFlags.NoAppendRows); ''VB.NET Me.GridControl1.Model.CutPaste.ClipboardFlags = Me.GridControl1.Model.CutPaste.ClipboardFlags _ Or GridDragDropFlags.NoAppendRows _ Or GridDragDropFlags.NoAppendCols

Loader.
Up arrow icon