Porovnávané verzie

Kľúč

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

%HI_Value_To_Clipboard function


Function
Function copies a value to clipboard.
Declaration
Blok kódu
languageesl
themeConfluence
%HI_Value_To_Clipboard(
   UNIVAL in value,
   BOOL   in formatByNLS := @FALSE
 )
Parameters
valueData type to be copied (TEXT, INT, REAL, TIME, BOOL).
formatByNLSOptional parameter. Possible values:
  • @TRUE - values of Absolute time and Real are to be formatted according to the settings in Regional and Language Options of the current user,
  • @FALSE - values are to be formatted according to default settings of the D2000 (see  EXPORT_CSV).
Description
The function converts value of data type to text which will be sent to clipboard.
Note
The function copies elementary data type (TEXT, INT, REAL, TIME, BOOL).
Example
Blok kódu
languageesl
themeRDark
 TEXT _text
 
 _text := "Value of _text"
 
 ; copy to Clipboard
 %HI_Value_To_Clipboard(_text)