Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IcxFilterControl.GetItemLinkName(Integer) Method

Returns the ItemLinkNames collection item.

#Declaration

Delphi
function GetItemLinkName(Index: Integer): string;

#Parameters

Name Type
Index Integer

#Returns

Type
string

#Remarks

This method is designed to be a ‘read’ method of the ItemLinkNames collection. When implemented, it returns a unique name of a link to the specified filter item. Item links are identified by their zero-based indexes passed via the Index parameter.

For instance, the GetItemLinkName method implemented by a data-aware filter control returns the name of a dataset field bound to a specific filter item.

A grid Table View implements the GetItemLinkName method to return a grid item’s name.

Delphi
Result := FilterableItems[Index].Name;

The ItemLinks property and the GetItemLink method provide access to item links created in the filter control.

See Also