Class IntValueAccumulatorMetadata

Defines properties and message types for IntValueAccumulator.

Inherits properties and message types from ValueAccumulatorMetadata.

Property Types

See also PropertyType
IntValueAccumulatorMetadata.IncrementSizeSourceProperty

The property type set on this node that determines the increment size of this Int Value Accumulator.

IntValueAccumulatorMetadata.IncrementSizeProperty

The size of the increments of this Int Value Accumulator.

IntValueAccumulatorMetadata.TargetPropertyTypeProperty

The property type on this node that this Int Value Accumulator updates.

IntValueAccumulatorMetadata.MinimumAccumulatedValueProperty

The minimum total accumulated integer value.

IntValueAccumulatorMetadata.MaximumAccumulatedValueProperty

The maximum total accumulated integer value.

Message Types

See also MessageType
IntValueAccumulatorMetadata.SetAccumulatedValueBoundariesMessage

Sets the minimum and maximum total accumulated integer value.

Arguments: IntValueAccumulatorMetadata.SetAccumulatedValueBoundariesMessageArguments

Message Arguments

Message arguments classes define message arguments used for different message types. Each class defines a number of property types - arguments - together with getter and setter functions for them.

IntValueAccumulatorMetadata.SetAccumulatedValueBoundariesMessageArguments

MinimumAccumulatedValueProperty

Sets the minimum total accumulated integer value.

Example
local value = arguments:getMinimumAccumulatedValueProperty()
arguments:setMinimumAccumulatedValueProperty(value)
MaximumAccumulatedValueProperty

Sets the maximum total accumulated integer value.

Example
local value = arguments:getMaximumAccumulatedValueProperty()
arguments:setMaximumAccumulatedValueProperty(value)