DocumentSchemaManagerGetDropDownMenuItemsPagedV2 Method

Returns collection of choices specified for particular field with paging and filtering. This method is obsolete; GetDropDownMenuItemsPagedV3() should be used instead.

Definition

Namespace: FileHold.LibraryManager
Assembly: FileHold.LibraryManager (in FileHold.LibraryManager.dll) Version: 17.2.0.0
C#
[WebMethodAttribute(Description = "Returns collection of choices specified for particular field with paging and filtering")]
public List<DropdownFieldChoice> GetDropDownMenuItemsPagedV2(
	int documentSchemaFieldDefinitionId,
	string filterValue,
	int offset,
	int pageSize,
	bool showInactiveItems,
	ref bool endOfItems
)

Parameters

documentSchemaFieldDefinitionId  Int32
filterValue  String
The action for filterValue depends on the metadata field configuration for suggest mode. When IsFilterContains is false, the value in filterValue will filter the list of values matching only the starting characters in the list. When IsFilterContains is true, filterValue will filter the list of values matching characters in any position.
offset  Int32
pageSize  Int32
showInactiveItems  Boolean
endOfItems  Boolean

Return Value

ListDropdownFieldChoice

See Also