Returns an end-of-line terminator for the current platform (OSX).
Returns:
|
Type |
Value |
Description |
|
String |
Returns the EndOfLine character or character string for the platform being compiled |
Available in:
|
WindowMain |
WindowLink |
|
YES |
YES |
Used in:
|
XojoScript Name |
GUID |
|
Generate Printlabel and linkbox text |
74855E25-5542-4B9D-B821-04C414425526 |
|
Create Linkbox text for an address |
63EAC259-4192-483E-9CB4-53AE6B5E5C24 |
|
Create letter in Word, from address |
90AC7CD7-EE78-4659-8076-076E96B9EF5B |
|
Import ISR payment file |
52C27AC4-24B7-4B7D-9107-6223B4E10E45 |
|
Copy current SQL Statement from Databox |
2DF5C42C-8BB5-4E65-9C7B-47C05623A707 |
|
Seminar participation status changed |
5D91954A-B9F9-4A82-BF41-602E39098169 |
Hint: You can find more references to XojoScripts which make use of this function by sending the following SQL statement to the database: Select id,GUID, ScriptName,ScriptCode from im_scripts where ScriptCode Like '%EOL%'
Example XojoScript:
// Copy SQL of Databox, from Scripts Menu
Dim sql As String = GetDataBoxSQL
If sql <> "" Then
SetClipboardText(sql)
MsgBox("SQL copied to clipoard!" + EOL + EOL + sql)
End If