diff options
Diffstat (limited to 'helpcontent2/source/text/sbasic/shared/03090302.xhp')
-rw-r--r-- | helpcontent2/source/text/sbasic/shared/03090302.xhp | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/helpcontent2/source/text/sbasic/shared/03090302.xhp b/helpcontent2/source/text/sbasic/shared/03090302.xhp new file mode 100644 index 000000000..4f9cd57f5 --- /dev/null +++ b/helpcontent2/source/text/sbasic/shared/03090302.xhp @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + --> + +<helpdocument version="1.0"> + +<meta> + <topic id="textsbasicshared03090302xml" indexer="include" status="PUBLISH"> + <title id="tit" xml-lang="en-US">GoTo Statement</title> + <filename>/text/sbasic/shared/03090302.xhp</filename> + </topic> + <history> + <created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created> + </history> +</meta> + +<body> +<section id="goto"> +<bookmark xml-lang="en-US" branch="index" id="bm_id3159413"> + <bookmark_value>GoTo statement</bookmark_value> + <bookmark_value>label; in GoTo statement</bookmark_value> +</bookmark> +<paragraph role="heading" id="hd_id3159413" xml-lang="en-US" level="1"><variable id="GoToh1"><link href="text/sbasic/shared/03090302.xhp" name="GoTo Statement">GoTo Statement</link></variable></paragraph> + <paragraph role="paragraph" id="par_id3153379" xml-lang="en-US">Continues program execution within a <literal>Sub</literal> or <literal>Function</literal> at the procedure line indicated by a label.</paragraph> +</section> +<paragraph role="heading" id="hd_id3149656" xml-lang="en-US" level="2">Syntax:</paragraph> +<bascode> +<paragraph role="bascode" id="bas_id211588675705501" localize="false">GoTo label[:]</paragraph> +</bascode> + +<paragraph role="heading" id="hd_id3150870" xml-lang="en-US" level="2">Parameters:</paragraph> +<paragraph role="paragraph" id="par_id471588670859073"><emph>label: </emph>A line identifier indicating where to continue execution. The scope of a label is that of the routine it belongs to.</paragraph> + <paragraph role="paragraph" id="par_id3152596" xml-lang="en-US">Use the <literal>GoTo</literal> statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and end it with a colon (":").</paragraph> + <paragraph role="warning" id="par_id3155416" xml-lang="en-US">You cannot use the <literal>GoTo</literal> statement to jump out of a <literal>Sub</literal> or <literal>Function</literal>.</paragraph> +<paragraph role="heading" id="hd_id3154731" xml-lang="en-US" level="2">Example:</paragraph> +<bascode> + <paragraph role="bascode" id="par_id3156214" localize="false">Sub/Function</paragraph> + <paragraph role="bascode" id="par_id3156424" xml-lang="en-US"> ' statement block</paragraph> + <paragraph role="bascode" id="par_id3154685" localize="false"> GoTo Label1</paragraph> + <paragraph role="bascode" id="par_id3145786" localize="false">Label2:</paragraph> + <paragraph role="bascode" id="par_id3161832" xml-lang="en-US"> ' statement block</paragraph> + <paragraph role="bascode" id="par_id3146120" localize="false"> Exit Sub/Function</paragraph> + <paragraph role="bascode" id="par_id3150010" localize="false">Label1:</paragraph> + <paragraph role="bascode" id="par_id3152462" xml-lang="en-US"> ' statement block</paragraph> + <paragraph role="bascode" id="par_id3149664" localize="false"> GoTo Label2</paragraph> + <paragraph role="bascode" localize="false" id="par_id3152886" xml-lang="en-US">End Sub/Function</paragraph> +</bascode> + +<section id="relatedtopics"> + <embed href="text/sbasic/shared/03090301.xhp#GoSubh1"/> + <embed href="text/sbasic/shared/03090303.xhp#OnGoSubGoToh1"/> +</section> + +</body> +</helpdocument> |