Returns the value of a local variable.

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

Syntax

C#
public bool GetLocalValue(
	string strFieldName,
	string strLocalName,
	out string strValue
)
Visual Basic (Declaration)
Public Function GetLocalValue ( _
	strFieldName As String, _
	strLocalName As String, _
	<OutAttribute> ByRef strValue As String _
) As Boolean
Visual C++
public:
bool GetLocalValue(
	String^ strFieldName, 
	String^ strLocalName, 
	[OutAttribute] String^% strValue
)

Parameters

strFieldName
Type: System..::.String
The field name.
strLocalName
Type: System..::.String
The local variable name.
strValue
Type: System..::.String %
The value of the local variable, will be set by the method.

Return Value

Returns true on success (the field and the local variable do exist).

See Also