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

TcxvgMultiRecordsOptionsBehavior.RecordScrollMode Property

Specifies the active record scroll mode.

#Declaration

Delphi
property RecordScrollMode: TcxRecordScrollMode read; write; default rsmDefault;

#Property Value

Type Default
TcxRecordScrollMode rsmDefault

#Remarks

Set this property to rsmByPixel or rsmByRecord to explicitly enable or disable the per-pixel content scroll mode. Refer to the TcxRecordScrollMode type description for detailed information on all available options.

Any of the following conditions disable the per-pixel content scroll mode:

  • The control shows only a single record at a time (the control’s LayoutStyle property is set to lsBandsView or lsSingleRecordView);

  • The control displays too many records in the multi-record layout for the scrollable area’s size.

Note

The per-pixel scroll mode can reduce an application’s performance during content scroll operations, depending on the client machine’s hardware speed, operating system and its settings, the number of records in the multi-record layout, and the control’s look & feel settings.

The default RecordScrollMode property value is rsmDefault.

See Also