From c7362eccbd333bcfc919bc981a4c10327fdb6c8d Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Fri, 19 Jul 2013 11:24:57 +0200 Subject: // are unhandled elements within Change-Id: I6c04583bb0259806d1c5ffd2c1425bacaed21583 --- source/text/sbasic/shared/03010103.xhp | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'source/text') diff --git a/source/text/sbasic/shared/03010103.xhp b/source/text/sbasic/shared/03010103.xhp index c4987b6a4a..bc304250d5 100644 --- a/source/text/sbasic/shared/03010103.xhp +++ b/source/text/sbasic/shared/03010103.xhp @@ -53,22 +53,31 @@ If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line. You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the Spc function to insert a specified number of spaces. Example: + + Sub ExamplePrint Print "ABC" Print "ABC","123" i = FreeFile() - - Open "C:\Temp.txt" For Output As i + Print #i, "ABC" + Close #i +End Sub + + +Sub ExamplePrint + Print "ABC" + Print "ABC","123" + i = FreeFile() Open "~/temp.txt" For Output As i - - Print #i, "ABC" Close #i End Sub + + -- cgit