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

TcxCustomDataSource.IsNativeCompare Method

Specifies whether fast comparison operations are supported by the current data source.

#Declaration

Delphi
function IsNativeCompare: Boolean; virtual;

#Returns

Type
Boolean

#Remarks

This function returns True if fast comparison operations are supported by a custom data source. In this instance, the GetInfoForCompare method provides direct access in memory to the value of a specific record/column.

If the function returns False, then values to compare are obtained via the GetValue method. This operation is more time consuming as it involves conversions of Variant types.

See Also