Prehľad
Nástroje obsahu
%HI_SetBrowserBackColor( INT in refId, INT in row, INT in col, INT in RGB ) INT %HI_GetBrowserBackColor( INT in refId, INT in row, INT in col )
refId | Reference to graphic object
(reference variable). |
row | Item row (starting with 1...). |
col | Item column (starting with 1...). |
RGB | RGB index of color. |
If the parameter row = 0, the color is set/detected for the whole
column col.
If the parameter col = 0, the color is set/detected for the whole row
row.
If both row = 0
and col = 0, then the
color is set/detected for the whole displayer.
; setting the background color to the whole displayer %HI_SetBrowserBackColor(_browser, 0, 0, _RGB)
; setting the background color for the column nr. 3 %HI_SetBrowserBackColor(_browser, 0, 3, _RGB)
; setting the background color for the item [2,3] %HI_SetBrowserBackColor(_browser, 2, 3, _RGB)
Pridať komentár