%HI_SetBrowserItemImage( INT in refId, INT in row, INT in col, HBJ in refToBitmap ) HBJ %HI_GetBrowserItemImage( INT in refId, INT in row, INT in col )
refId | Reference to displayer (reference variable). |
row | Row of the cell (from 1 to ...). |
col | Column of the cell (from 1 to ...). |
refToBitmap | Reference to object of Bitmap type. |
; setting of the bitmap for whole displayer %HI_SetBrowserItemImage(_browser, 0, 0, PIC.BMP\HBJ) ; setting of the bitmap for column No. 3 %HI_SetBrowserItemImage(_browser, 0, 3, PIC.BMP\HBJ) ; setting of the bitmap for cell [2,3] %HI_SetBrowserItemImage(_browser, 2, 3, PIC.BMP\HBJ)
Pridať komentár