Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

%HI_SetCellToolTip, %HI_GetCellToolTipTitle, %HI_GetCellToolTipText functions


Function

Function %HI_SetCellToolTip sets the tooltip on the cell in the Browser displayer Browser. Tooltip consists of two texts - title and text.

Function %HI_GetCellToolTipTitle gets back the title of tooltip.

Function %HI_GetCellTooltipText gets back the text of tooltip.

Declaration
Blok kódu
languageesl
themeConfluence
%HI_SetCellToolTip(
   INT in refId,
   INT in row,
   INT in col,
   TEXT in ttTitle,
   TEXT in ttText
 )
 
 TEXT %HI_GetCellToolTipTitle(
   INT in refId,
   INT in row,
   INT in col
 )
 
 TEXT %HI_GetCellToolTipText(
   INT in refId,
   INT in row,
   INT in col
 )
 
Parameters
refIdReference to the displayer (reference variable).
rowRow of the cell (in the range of 1...).
colColumn of the cell (in the range of 1...).
ttTitleTitle of the tooltip.
ttTextText of the tooltip.
Example
Blok kódu
languageesl
themeRDark
 ;setting of the tooltip for cell [2,3]
Blok kódu
languageesl
themeRDark
 %HI_SetCellToolTip (_browser, 2,3,  "Cell", "This is cell 2,3")