DocumentSchemaManagerGetDropDownMenuItemsPaged 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. This method is obsolete; GetDropDownMenuItemsPagedV2() should be used instead.")]
public List<DropdownFieldChoice> GetDropDownMenuItemsPaged(
	int documentSchemaFieldDefinitionId,
	string startsWith,
	int offset,
	int pageSize,
	ref bool endOfItems
)

Parameters

documentSchemaFieldDefinitionId  Int32
startsWith  String
The action for startsWith depends on the metadata field configuration for suggest mode. When IsFilterContains is false, the value in startsWith will filter the list of values matching only the starting characters in the list. When IsFilterContains is true, startsWith will filter the list of values matching characters in any position. The name of this parameter is startsWith to ensure backward compatibility.
offset  Int32
pageSize  Int32
endOfItems  Boolean

Return Value

ListDropdownFieldChoice

See Also