ComponentOne FlexGrid for WinForms
SetCellImage(Int32,Int32,Image) Method

C1.Win.C1FlexGrid Namespace > C1FlexGridBase Class > SetCellImage Method : SetCellImage(Int32,Int32,Image) Method
Row index.
Column index.
An System.Drawing.Image object containing an image to display in the cell.
Sets the image displayed in a grid cell.
Syntax
'Declaration
 
Public Overloads Sub SetCellImage( _
   ByVal row As Integer, _
   ByVal col As Integer, _
   ByVal newImage As Image _
) 
public void SetCellImage( 
   int row,
   int col,
   Image newImage
)

Parameters

row
Row index.
col
Column index.
newImage
An System.Drawing.Image object containing an image to display in the cell.
Remarks

In addition to the usual cell contents, you can display images in cells. There are two methods for showing images in cells:

1. You can use the SetCellImage(Int32,String,Image) and GetCellImage(Int32,String) methods to assign images directly to the cells. In this case, the cell contents and the image are independent. To update the image, you need to call SetCellImage(Int32,String,Image) again.

2. You can use the ImageMap property to associate images with specific cell values. In this case, images are updated automatically whenever the cell contents change. The RowCol.ImageAndText property allows you to specify whether the control should display the images in addition to or instead of the cell text.

See Also

Reference

C1FlexGridBase Class
C1FlexGridBase Members
Overload List