blob: 2f4bfd26be08635db5cfbe483c2f5eb8370e6ebe [file]
<?xml version="1.0" encoding="UTF-8"?>
<!--***********************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
***********************************************************-->
<helpdocument version="1.0">
<meta>
<topic id="textsbasicshared03070100xml" indexer="include" status="PUBLISH">
<title id="tit" xml-lang="en-US">"-" Operator [Runtime]</title>
<filename>/text/sbasic/shared/03070100.xhp</filename>
</topic>
</meta>
<body>
<section id="subtraktion">
<bookmark xml-lang="en-US" branch="index" id="bm_id3156042">
<bookmark_value>"-" operator (mathematical)</bookmark_value>
</bookmark>
<paragraph role="heading" id="hd_id3156042" xml-lang="en-US" level="1" l10n="U"><link href="text/sbasic/shared/03070100.xhp">"-" Operator [Runtime]</link></paragraph>
<paragraph role="paragraph" id="par_id3153345" xml-lang="en-US" l10n="U">Subtracts two values.</paragraph>
</section>
<paragraph role="heading" id="hd_id3149416" xml-lang="en-US" level="2" l10n="U">Syntax:</paragraph>
<paragraph role="paragraph" id="par_id3156023" xml-lang="en-US" l10n="U">Result = Expression1 - Expression2</paragraph>
<paragraph role="heading" id="hd_id3154760" xml-lang="en-US" level="2" l10n="U">Parameters:</paragraph>
<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" l10n="U"><emph>Result:</emph> Any numerical expression that contains the result of the subtraction.</paragraph>
<paragraph role="paragraph" id="par_id3150398" xml-lang="en-US" l10n="U"><emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract.</paragraph>
<paragraph role="heading" id="hd_id3154366" xml-lang="en-US" level="2" l10n="U">Example:</paragraph>
<paragraph role="paragraph" id="par_id3147230" xml-lang="en-US" l10n="U">Sub ExampleSubtraction1</paragraph>
<paragraph role="paragraph" id="par_id3156281" xml-lang="en-US" l10n="U">Print 5 - 5</paragraph>
<paragraph role="paragraph" id="par_id3145172" xml-lang="en-US" l10n="U">End sub</paragraph>
<paragraph role="paragraph" id="par_id3149562" xml-lang="en-US" l10n="U">Sub ExampleSubtraction2</paragraph>
<paragraph role="paragraph" id="par_id3159254" xml-lang="en-US" l10n="U">Dim iValue1 as Integer</paragraph>
<paragraph role="paragraph" id="par_id3147434" xml-lang="en-US" l10n="U">Dim iValue2 as Integer</paragraph>
<paragraph role="paragraph" id="par_id3150011" xml-lang="en-US" l10n="U">iValue1 = 5</paragraph>
<paragraph role="paragraph" id="par_id3152576" xml-lang="en-US" l10n="U">iValue2 = 10</paragraph>
<paragraph role="paragraph" id="par_id3163712" xml-lang="en-US" l10n="U">Print iValue1 - iValue2</paragraph>
<paragraph role="paragraph" id="par_id3156443" xml-lang="en-US" l10n="U">End Sub</paragraph>
</body>
</helpdocument>