Explicit method for changing pump speed. Same functionality as calling change_pump with a change_speed parameter. May be more compatible with some callers.

Namespace: configuration_services
Assembly: configuration_services (in configuration_services.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
string change_pump_speed(
	uint list_id,
	uint pump_state_id,
	uint speed
)
Visual Basic
Function change_pump_speed ( _
	list_id As UInteger, _
	pump_state_id As UInteger, _
	speed As UInteger _
) As String
Visual C++
String^ change_pump_speed(
	unsigned int list_id, 
	unsigned int pump_state_id, 
	unsigned int speed
)

Parameters

list_id
Type: System..::..UInt32
The id for the selection list in which the pump resides.
pump_state_id
Type: System..::..UInt32
PumpStateID column from get_list(UInt32) or return value from add_pump(UInt32, Int32, Guid).
speed
Type: System..::..UInt32
target speed

Return Value

Current baseline trim label.

See Also