tdf#114263 Add info for BASIC Spc() function

Change-Id: Ic57ae1777e9e41c67a914b210b002f3ba89e678c
Reviewed-on: https://gerrit.libreoffice.org/65753
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
diff --git a/source/auxiliary/sbasic.tree b/source/auxiliary/sbasic.tree
index c05ecba..2bc0305 100644
--- a/source/auxiliary/sbasic.tree
+++ b/source/auxiliary/sbasic.tree
@@ -255,6 +255,7 @@
                    <topic id="sbasic/text/sbasic/shared/03080103.xhp">Sin Function</topic>
                    <topic id="sbasic/text/sbasic/shared/03140011.xhp">SLN Function [VBA]</topic>
                    <topic id="sbasic/text/sbasic/shared/03120201.xhp">Space Function</topic>
                    <topic id="sbasic/text/sbasic/shared/03120201.xhp">Spc Function</topic>
                    <topic id="sbasic/text/sbasic/shared/03120314.xhp">Split Function</topic>
                    <topic id="sbasic/text/sbasic/shared/03080401.xhp">Sqr Function</topic>
                    <topic id="sbasic/text/sbasic/shared/03080400.xhp">Square Root Calculation</topic>
diff --git a/source/text/sbasic/shared/03120201.xhp b/source/text/sbasic/shared/03120201.xhp
index cc17ee4..815a840 100644
--- a/source/text/sbasic/shared/03120201.xhp
+++ b/source/text/sbasic/shared/03120201.xhp
@@ -20,7 +20,7 @@

<meta>
  <topic id="textsbasicshared03120201xml" indexer="include" status="PUBLISH">
    <title id="tit" xml-lang="en-US">Space Function</title>
    <title id="tit" xml-lang="en-US">Space and Spc Function</title>
    <filename>/text/sbasic/shared/03120201.xhp</filename>
  </topic>
</meta>
@@ -30,38 +30,38 @@
<section id="space">
<bookmark xml-lang="en-US" branch="index" id="bm_id3150499">
  <bookmark_value>Space function</bookmark_value>
  <bookmark_value>Spc function</bookmark_value>
</bookmark>

<paragraph id="hd_id3150499" role="heading" level="1" xml-lang="en-US"><link href="text/sbasic/shared/03120201.xhp" name="Space Function">Space Function</link></paragraph>
<paragraph id="hd_id3150499" role="heading" level="1" xml-lang="en-US"><link href="text/sbasic/shared/03120201.xhp" name="Space Function">Space and Spc Functions</link></paragraph>
<paragraph id="par_id3154927" role="paragraph" xml-lang="en-US">Returns a string that consists of a specified amount of spaces.</paragraph>
</section>
<note id="par_id681546202842979">The Spc function works the same as the Space function.</note>
<embed href="text/sbasic/shared/00000003.xhp#functsyntax"/>

<paragraph id="hd_id3153394" role="heading" level="2" xml-lang="en-US">Syntax:</paragraph>
<bascode>
<paragraph id="par_id3143267" role="bascode" localize="false" xml-lang="en-US">Space (n As Long)</paragraph>
</bascode>
<paragraph id="par_id3143267" role="code" localize="false">Space (n As Long)<br/></paragraph>
<paragraph role="code" id="par_id631546202894380" localize="false">Spc (n As Long)</paragraph>

<paragraph id="hd_id3147242" role="heading" level="2" xml-lang="en-US">Return value:</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functvalue"/>
<paragraph id="par_id3149233" role="paragraph" xml-lang="en-US">String</paragraph>

<paragraph id="hd_id3156152" role="heading" level="2" xml-lang="en-US">Parameters:</paragraph>
<paragraph id="par_id3143228" role="paragraph" xml-lang="en-US"> <emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535.</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functparameters"/>
<paragraph id="par_id3143228" role="paragraph" xml-lang="en-US"> <emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of <emph>n</emph> is 65535.</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
<embed href="text/sbasic/shared/00000003.xhp#err5"/>

<paragraph id="hd_id3154760" role="heading" level="2" xml-lang="en-US">Example:</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functexample"/>
<bascode>
<paragraph id="par_idm1341576672" role="bascode" localize="false" xml-lang="en-US">Sub ExampleSpace</paragraph>
<paragraph id="par_idm1341575440" role="bascode" localize="false" xml-lang="en-US">Dim sText As String,sOut As String</paragraph>
<paragraph id="par_idm1341574192" role="bascode" localize="false" xml-lang="en-US">Dim iLen As Integer</paragraph>
<paragraph id="par_idm1341572960" role="bascode" localize="false" xml-lang="en-US">    iLen = 10</paragraph>
<paragraph id="par_idm1341571728" role="bascode" localize="false" xml-lang="en-US">    sText = "Las Vegas"</paragraph>
<paragraph id="par_idm1341570496" role="bascode" localize="false" xml-lang="en-US">    sOut = sText &amp; Space(iLen) &amp; sText &amp; Chr(13) &amp;_</paragraph>
<paragraph id="par_idm1341569184" role="bascode" localize="false" xml-lang="en-US">    sText &amp; Space(iLen*2) &amp; sText &amp; Chr(13) &amp;_</paragraph>
<paragraph id="par_idm1341567888" role="bascode" localize="false" xml-lang="en-US">    sText &amp; Space(iLen*4) &amp; sText &amp; Chr(13)</paragraph>
<paragraph id="par_id3154216" role="bascode" xml-lang="en-US">    MsgBox sOut,0,"Info:"</paragraph>
<paragraph id="par_idm1341564864" role="bascode" localize="false" xml-lang="en-US">End Sub</paragraph>
<paragraph id="par_idm1341576672" role="bascode" localize="false">Sub ExampleSpace</paragraph>
<paragraph id="par_idm1341575440" role="bascode" localize="false">Dim sText As String, sOut As String</paragraph>
<paragraph id="par_idm1341574192" role="bascode" localize="false">Dim iLen As Integer</paragraph>
<paragraph id="par_idm1341572960" role="bascode" localize="false">    iLen = 10</paragraph>
<paragraph id="par_idm1341571728" role="bascode" localize="false">    sText = "Las Vegas"</paragraph>
<paragraph id="par_idm1341570496" role="bascode" localize="false">    sOut = sText &amp; Space(iLen) &amp; sText &amp; Chr(13) &amp;_</paragraph>
<paragraph id="par_idm1341569184" role="bascode" localize="false">    sText &amp; Space(iLen*2) &amp; sText &amp; Chr(13) &amp;_</paragraph>
<paragraph id="par_idm1341567888" role="bascode" localize="false">    sText &amp; Space(iLen*4) &amp; sText &amp; Chr(13)</paragraph>
<paragraph id="par_id3154216" role="bascode">    MsgBox sOut,0,"Info:"</paragraph>
<paragraph id="par_idm1341564864" role="bascode" localize="false">End Sub</paragraph>
</bascode>
</body>

</helpdocument>