DocumentSchemaManagerGetDropDownMenuItemsPagedV3 Method

Returns collection of choices specified for particular field with paging and filtering and total choices count for this particular field

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 and total choices count for this particular field")]
public List<DropdownFieldChoice> GetDropDownMenuItemsPagedV3(
	int documentSchemaFieldDefinitionId,
	int offset,
	int pageSize,
	ref int totalChoicesCount,
	string filterValue,
	bool showInactiveItems
)

Parameters

documentSchemaFieldDefinitionId  Int32
offset  Int32
pageSize  Int32
totalChoicesCount  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.
showInactiveItems  Boolean

Return Value

ListDropdownFieldChoice

See Also