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

Updates the sort order of a field type of type list.

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

Syntax

C#
public void UpdateFieldListSortOrder(
	int projectId,
	int fieldType,
	string sortOrder
)
Visual Basic (Declaration)
Public Sub UpdateFieldListSortOrder ( _
	projectId As Integer, _
	fieldType As Integer, _
	sortOrder As String _
)
Visual C++
public:
void UpdateFieldListSortOrder(
	int projectId, 
	int fieldType, 
	String^ sortOrder
)

Parameters

projectId
Type: System..::.Int32
The database id of the Project.
fieldType
Type: System..::.Int32
The type of the field, these are coded according to the type in TrackerFieldsNameId.
sortOrder
Type: System..::.String
The sort order can be 'N' - as is no sort 'D' as descending or 'A' - ascending.

See Also