Content Cell Demo

Content Cell Demo illustrates the flexibilty of grid cells to exhibit different behaviors. You will learn how to make to cell as Static, Header, Progressbar and host the cell as a picturebox to display image

Given below is an image of the sample.

Cell Types screenshot

Features:

    		gridControl1[rowIndex,colIndex].CellType = "Static";  

      For ProgressBar Cells:

GridStyleInfo style9 = gridControl1[rowIndex, colIndex1];
GridProgressBarInfo progressBarEx9 = style9.ProgressBar;
style9.CellType = "ProgressBar";  
progressBarEx9.ProgressStyle =  Syncfusion.Windows.Forms.Tools.ProgressBarStyles.Gradient;