[This is preliminary documentation and is subject to change.]

Updates the list value of a particular list type field in tracker.

Namespace:  OfficeClip.DBLayer.Tracker
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public void UpdateFieldListValue(
	int projectId,
	int fieldType,
	int fieldId,
	string val,
	bool isColorEnabled,
	string colorValue,
	bool isStyleEnabled,
	string styleValue
)
Visual Basic (Declaration)
Public Sub UpdateFieldListValue ( _
	projectId As Integer, _
	fieldType As Integer, _
	fieldId As Integer, _
	val As String, _
	isColorEnabled As Boolean, _
	colorValue As String, _
	isStyleEnabled As Boolean, _
	styleValue As String _
)
Visual C++
public:
void UpdateFieldListValue(
	int projectId, 
	int fieldType, 
	int fieldId, 
	String^ val, 
	bool isColorEnabled, 
	String^ colorValue, 
	bool isStyleEnabled, 
	String^ styleValue
)

Parameters

projectId
Type: System..::.Int32
The unique identifier for the Project.
fieldType
Type: System..::.Int32
The type of the field as given by TrackerFieldsNameId
fieldId
Type: System..::.Int32
The unique identifier of the list item whose value is required to be changed.
val
Type: System..::.String
The value that the list item is supposed to change to.
isColorEnabled
Type: System..::.Boolean
Is the color enabled
colorValue
Type: System..::.String
The value of the color
isStyleEnabled
Type: System..::.Boolean
Is the style enabled
styleValue
Type: System..::.String
The value of the style

See Also