Grid Column

Hi, In grid i have 3 column. The last column should enter value(int) manually and only the same column contain scroll option. What property should i set. regards shashi

1 Reply

AD Administrator Syncfusion Team June 20, 2006 09:36 PM UTC

Hi Shashi, I am really sorry to inform you that I am not clear about your question. Can you please give me a more details regarding this issue? Do you want to display the VerticalScrollbar for the cell in a grid? If so , you need to handle the QueryCellInfo event. private void gridControl1_QueryCellInfo(object sender, Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs e) { //For First all cells if(e.ColIndex == 1 && e.RowIndex > 0 ) { e.Style.AllowEnter = true; e.Style.WrapText = true; e.Style.VerticalScrollbar = true; } } Let me know if this helps. Best Regards, Haneef

Loader.
Up arrow icon