We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Update Cell Style for entire row or column

i know i can do this: gridcontrol[_g.RowCount,0].CellType = "Static"; but how can i update the style for the entire row or column at once. thanks, ak

2 Replies

AK Adam K. July 13, 2005 11:53 PM UTC

I meant the CellType of a row all at once not the CellStyle thanks, ak


AD Administrator Syncfusion Team July 14, 2005 12:00 AM UTC

In a GridControl, you can set column styles and row styles. gridcontrol.ColStyles[colIndex].CellType = "Static"; gridcontrol.RowStyles[rowIndex].CellType = "Static";

Loader.
Up arrow icon