Create graph of pump with high pixel density suitable for printing. Specify physical dimensions on paper.

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

Syntax

C#
byte[] graph_for_print(
	uint list_id,
	uint pump_state_id,
	size_value physical_width,
	size_value physical_height,
	GraphOptions graph_settings,
	pump_view alternate_views,
	string locale
)
Visual Basic
Function graph_for_print ( _
	list_id As UInteger, _
	pump_state_id As UInteger, _
	physical_width As size_value, _
	physical_height As size_value, _
	graph_settings As GraphOptions, _
	alternate_views As pump_view, _
	locale As String _
) As Byte()
Visual C++
array<unsigned char>^ graph_for_print(
	unsigned int list_id, 
	unsigned int pump_state_id, 
	size_value^ physical_width, 
	size_value^ physical_height, 
	GraphOptions^ graph_settings, 
	pump_view^ alternate_views, 
	String^ locale
)

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).
physical_width
Type: configuration_services..::..size_value
Width of the graph on paper, e.g. 8 inches.
physical_height
Type: configuration_services..::..size_value
Height of the graph on paper, e.g. 8 inches.
graph_settings
Type: PumpFloWeb.SelectLogic.Graph..::..GraphOptions
Optional, settings that will change how the graph looks.
alternate_views
Type: pumpflo_services.reporting..::..pump_view
Optional, [multi_pump_view,multi_speed_view] and settings for how to render those views.
locale
Type: System..::..String
standard locale string like "en" or "fr-ca." Specifies desired localization for returned data

Return Value

See Also