Generate a pdf report.

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

Syntax

C#
byte[] get_report(
	uint list_id,
	uint pump_state_id,
	report_settings rep_settings,
	string locale
)
Visual Basic
Function get_report ( _
	list_id As UInteger, _
	pump_state_id As UInteger, _
	rep_settings As report_settings, _
	locale As String _
) As Byte()
Visual C++
array<unsigned char>^ get_report(
	unsigned int list_id, 
	unsigned int pump_state_id, 
	report_settings^ rep_settings, 
	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).
rep_settings
Type: configuration_services..::..report_settings
locale
Type: System..::..String
standard locale string like "en" or "fr-ca." Specifies desired localization for returned data

Return Value

byte stream of pdf.

See Also