summaryrefslogtreecommitdiff
path: root/source/text/sbasic/shared/03090412.xhp
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@libreoffice.org>2020-03-05 13:46:59 +0100
committerOlivier Hallot <olivier.hallot@libreoffice.org>2020-03-05 13:58:09 +0100
commit6e6ea59e648c288ca74c56125163c4fcf39571ab (patch)
tree7d38dd15ba5c2762772618e8d85d8ff4ca44739b /source/text/sbasic/shared/03090412.xhp
parentcaaf639a8606d13a5eb6d389a0dc061082be0d7c (diff)
No need to translate Basic instructions
Change-Id: Ie127f39166179622159e10801458a6ddbcbd02be Reviewed-on: https://gerrit.libreoffice.org/c/help/+/90027 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'source/text/sbasic/shared/03090412.xhp')
-rw-r--r--source/text/sbasic/shared/03090412.xhp19
1 files changed, 9 insertions, 10 deletions
diff --git a/source/text/sbasic/shared/03090412.xhp b/source/text/sbasic/shared/03090412.xhp
index 86523ddc93..adad552128 100644
--- a/source/text/sbasic/shared/03090412.xhp
+++ b/source/text/sbasic/shared/03090412.xhp
@@ -34,29 +34,29 @@
</bookmark>
-<paragraph id="hd_id3152924" role="heading" level="1" xml-lang="en-US"><link href="text/sbasic/shared/03090412.xhp" name="Exit Statement">Exit Statement</link></paragraph>
+<h1 id="hd_id3152924"><link href="text/sbasic/shared/03090412.xhp" name="Exit Statement">Exit Statement</link></h1>
<paragraph id="par_id3153394" role="paragraph" xml-lang="en-US">Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, a property, or a subroutine.</paragraph>
</section>
-<paragraph id="hd_id3149763" role="heading" level="2" xml-lang="en-US">Syntax:</paragraph>
+<embed href="text/sbasic/shared/00000003.xhp#functsyntax"/>
<bascode>
<paragraph id="par_id3159157" role="bascode" xml-lang="en-US">Exit Do, Exit For, Exit Function, Exit Property, Exit Sub</paragraph>
</bascode>
-<paragraph id="hd_id3148943" role="heading" level="2" xml-lang="en-US">Parameters:</paragraph>
-<paragraph id="par_id3154760" role="paragraph" xml-lang="en-US"> <emph>Exit Do</emph> </paragraph>
+<embed href="text/sbasic/shared/00000003.xhp#functparameters"/>
+<paragraph id="par_id3154760" role="paragraph" xml-lang="en-US" localize="false"> <emph>Exit Do</emph> </paragraph>
<paragraph id="par_id3147559" role="paragraph" xml-lang="en-US">Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level.</paragraph>
-<paragraph id="par_id3150398" role="paragraph" xml-lang="en-US"> <emph>Exit For</emph> </paragraph>
+<paragraph id="par_id3150398" role="paragraph" xml-lang="en-US" localize="false"> <emph>Exit For</emph> </paragraph>
<paragraph id="par_id3148797" role="paragraph" xml-lang="en-US">Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level.</paragraph>
-<paragraph id="par_id3147229" role="paragraph" xml-lang="en-US"> <emph>Exit Function</emph> </paragraph>
+<paragraph id="par_id3147229" role="paragraph" xml-lang="en-US" localize="false"> <emph>Exit Function</emph> </paragraph>
<paragraph id="par_id3154685" role="paragraph" xml-lang="en-US">Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call.</paragraph>
-<paragraph id="par_id31581260355116" role="paragraph" xml-lang="en-US"> <emph>Exit Property</emph> </paragraph>
+<paragraph id="par_id31581260355116" role="paragraph" xml-lang="en-US" localize="false"> <emph>Exit Property</emph> </paragraph>
<paragraph id="par_id1001581260355700" role="paragraph" xml-lang="en-US">Exits the <emph>Property</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Property</emph> call.</paragraph>
-<paragraph id="par_id3155132" role="paragraph" xml-lang="en-US"> <emph>Exit Sub</emph> </paragraph>
+<paragraph id="par_id3155132" role="paragraph" xml-lang="en-US" localize="false"> <emph>Exit Sub</emph> </paragraph>
<paragraph id="par_id3149561" role="paragraph" xml-lang="en-US">Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call.</paragraph>
<paragraph id="par_id3153143" role="note" xml-lang="en-US">The Exit statement does not define the end of a structure, and must not be confused with the End statement.</paragraph>
-<paragraph id="hd_id3147348" role="heading" level="2" xml-lang="en-US">Example:</paragraph>
+<embed href="text/sbasic/shared/00000003.xhp#functexample"/>
<bascode>
<paragraph id="par_idm1341018896" role="bascode" localize="false" xml-lang="en-US">Sub ExampleExit</paragraph>
<paragraph id="par_idm1341017664" role="bascode" localize="false" xml-lang="en-US">Dim sReturn As String</paragraph>
@@ -84,5 +84,4 @@
<paragraph id="par_idm1340988240" role="bascode" localize="false" xml-lang="en-US">End Function</paragraph>
</bascode>
</body>
-
</helpdocument> \ No newline at end of file