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

TcxCustomGridController Class

Represents the base class for a View’s controller.

#Declaration

Delphi
TcxCustomGridController = class(
    TcxGridViewHandler
)

#Remarks

TcxCustomGridController is the base class for View-specific controllers that manage certain operations depending on which View they are associated with. To access the View’s controller functionality, see its Controller property.

The View’s controller enables you to:

  • start/cancel an incremental search

  • access selected and focused records

  • control cell editing

  • invoke a customization form

  • perform scrolling

  • navigate records

  • etc.

TcxCustomGridController provides only base features. Its functionality is extended by descendants (See the TcxCustomGridTableController class, for instance).

See Also