How to paste the data in the current cell when the ListBoxSelectionMode is enabled in WinForms GridControl?
Paste the data
In the WinForms GridControl, pasting the data in the current cell when the ListBoxSelectionMode is
enabled is achieved by handling the ClipboardCanPaste event.
By using this event, you can get the Clipboard text by accessing the
GetData()of the GetDataObject method. Then the data can be pasted in the
current cell by using the PasteTextFromBuffer method.
this.gridControl1.ListBoxSelectionMode = SelectionMode.One;
this.gridControl1.ClipboardCanPaste += new GridCutPasteEventHandler(gridControl1_ClipboardCanPaste);
void gridControl1_ClipboardCanPaste(object sender, GridCutPasteEventArgs e)
{
    //Checks whether the range is a Row.
    if (e.RangeList.ActiveRange.RangeType == GridRangeInfoType.Rows)
    {
        GridCurrentCell currentCell = this.gridControl1.CurrentCell;
        if (currentCell != null)
        {
            //Gets the Clipboard text.
            string clipboardText = Clipboard.GetDataObject().GetData(DataFormats.UnicodeText) as string;
            //Sets the ClipBoard text to the current cell.
            this.gridControl1.Model.TextDataExchange.PasteTextFromBuffer(clipboardText, currentCell.RangeInfo, e.ClipboardFlags);
            e.Result = false;
            e.Handled = true;
        }
    }
}Me.gridControl1.ListBoxSelectionMode = SelectionMode.One
AddHandler gridControl1.ClipboardCanPaste, AddressOf gridControl1_ClipboardCanPaste
'Handles the ClipboardCanPaste event.
Private Sub gridControl1_ClipboardCanPaste(ByVal sender As Object, ByVal e As GridCutPasteEventArgs)
    'Checks whether the range is a Row.
     If e.RangeList.ActiveRange.RangeType = GridRangeInfoType.Rows Then
           Dim currentCell As GridCurrentCell = Me.gridControl1.CurrentCell
              If currentCell IsNot Nothing Then
                  'Gets the Clipboard text.
                   Dim clipboardText As String = TryCast(Clipboard.GetDataObject().GetData(DataFormats.UnicodeText), String)
                 'Sets the ClipBoard text to the current cell.
           Me.gridControl1.Model.TextDataExchange.PasteTextFromBuffer(clipboardText, currentCell.RangeInfo, e.ClipboardFlags)
                 e.Result = False
                 e.Handled = True
             End If
       End If
End SubThe following screenshot displays the data pasted when the LisBoxSelectionMode is enabled.

Samples:
C#: PastedData
VB: PastedData
Reference Link: Clipboard Support
Conclusion
I hope you enjoyed learning about how to paste the data in the current cell when the ListBoxSelectionMode is enabled in the WinForms GridControl.
You can refer to our WinForms GridControl feature tour page to know about its other groundbreaking feature representations and WinForms GridControl documentation, and how to quickly get started for configuration specifications.
 
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!