Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The user can enter a value in the text box by entering a value and by clicking on the spinner box next to it. The value can also be adjusted by the slider bar on .

The units of the modifier is shown at the right side of the displayslider bar.

schema

Code Block
xml
xml
<complexType name="SingleValueModifierTypeComplexType">
		<complexContent>
			<extension base="fews:ModifierBaseComplexType">
				<sequence>
					<element name="timeSeries" type="fews:TimeSeriesFilterComplexType" maxOccurs="unbounded"/>
					<element name="softLimits" type="fews:SoftLimitsComplexType"/>
					<element name="hardLimits" type="fews:HardLimitsComplexType" minOccurs="0"/>
					<element name="defaultTime" type="fews:DefaultStartTimeEnumStringType">
						<annotation>
							<documentation>Start of time period to which modifier is applied.
                        When omitted this value will default to the Year 1000 and will be disabled.
                    </documentation>
						</annotation>
					</element>
					<choice>
						<element name="defaultValue" type="float" minOccurs="0"/>
						<element name="defaultValueTimeSeries" type="fews:TimeSeriesFilterComplexType" minOccurs="0"/>
						<element name="statisticalFunctionDefaultValue" type="fews:statisticalFunctionEnumType" minOccurs="0" maxOccurs="unbounded"/>
					</choice>
				</sequence>
			</extension>
		</complexContent>
	</complexType>

...