This demo illustrates hosting a Web browser in a grid cell.
An event log is implemented in addition, to show the order of current cell events that are raised and the values present in cells as events occur. Mouse events can be viewed as well.
Features:
A Web browser can be placed in a grid cell by setting its CellType to "Control".
this.gridControl1[2,2].CellType = "Control";
Assign the web browser instance to the grid as follows.
this.gridControl1[2,2].Control = this.axWebBrowser1;
Note: "axWebBrowser1" is an instance of AxSHDocVw.AxWebBrowser().
this.axWebBrowser1 = new AxSHDocVw.AxWebBrowser();