Topic
Breaking FP Script across lines
- This topic has 2 replies and 3 voices and was last updated 8 years, 5 months ago ago by Bernhard Kantz.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
15.12.2016 at 09:46 #33625AnonymGuest
Hello,
I wondered whether it is possible to break FPScript code across lines?
This would help with formatting and where formulas get quite long.
Many thanks,
Hugh
15.12.2016 at 09:46 #33626Hugh NeveParticipantHello,
I wondered whether it is possible to break FPScript code across lines?
This would help with formatting and where formulas get quite long.
Many thanks,
Hugh
16.12.2016 at 08:26 #33627Bernhard KantzParticipantOne can split a line of FPScript code by using a underscore ‘_’ or backslash ” character at the end of a line like in the following example:
[code]
Dim result = List(_
“I”, 42, _
“II”, 1093, _
“III”, 2.718, _
“IV”, “Hello world!” _
)
[/code] -
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.