currentRowImage

Type: Binary

Availability: Read or write at run time only

The currentRowImage property of the JadeTableSheet class contains a binary image to be displayed in the fixed cell at the start of the current row, as shown in the following image.

The image is displayed only when the showCurrentRowImage property of the JadeTableSheet class is set to true and the table has a fixed column. A default image is used if the value of the currentRowImage property is null (the default).

The image is displayed as if the stretch property of the table were set to Stretch_None_Picture_First (2) and the cell text is displayed as if the value of the partialTextIndication property is true.

Row heights and the width of the first column could be affected by this image. The spacing between the image and the text is 3 through 15 pixels, depending on the extra space available.

The code fragment in the following example shows the use of the currentRowImage property.

table1.accessSheet(1).currentRowImage := app.loadPicture("c:\select.png");
table1.accessSheet(1).showCurrentRowImage := true;