Porovnávané verzie

Kľúč

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

%HI_SetBrowserMultiselect, %HI_GetBrowserMultiselect functions


Function
The function %HI_SetBrowserMultiselect enables/disables multiple selection in the Browser displayer.
The function %HI_GetBrowserMultiselect returns the setting defined by %HI_SetBrowserMultiselect function in the Browser displayer.
Declaration
Blok kódu
languageesl
themeConfluence
 %HI_SetBrowserMultiselect(
  INT in refId,
  BOOL in bEnable  
 )
 
 HBJ  %HI_GetBrowserMultiselect(
  INT in refId
 )
Parameters
refIdReference to the displayer (reference variable).
bEnable@TRUE - enables the multiple selection
@FALSE - disables the multiple selection  
Example
Blok kódu
languageesl
themeRDark
 ; multiple selection is disabled in Browser displayer
 %HI_SetBrowserMultiselect(_Browser, @FALSE)
 
 
 



Blok kódu
languageesl
themeRDark
 ; getting of status of multiple selection (enabled / disabled) in Browser displayer
 _bMultiSelect := %HI_GetBrowserMultiselect(_Browser)