Insert a tabulated (tab) in a text or String.
1 string.ht
<string.ht />
Returns | |
---|---|
Type | Description |
string | "\t" |
Exceptions
requires 1 arguments, received: ...
The entry parameter has not been specified.
Example
Shows on screen a string with the tabulation using the function string.hf.
Copy
<xsql-script name='string_ht'> <body> <set name='a'>STR1</set> <set name='b'> <string> String <string.ht /> <a/> <string.ht /> with tabulations. </string> </set> <println><b /></println> </body> </xsql-script>
Returns:
Copy
String STR1 with tabulations.