C#:
this.gridControl1.TableStyle.WrapText = false;
|
VB:
AddHandler Me.multiColumnComboBox1.ListBox.Grid.QueryCellInfo, AddressOf Grid_QueryCellInfo
Private Sub Grid_QueryCellInfo(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)
e.Style.WrapText = False
End If
End Sub |