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

BaseView.BaseInfo Property

Gets an object providing information for creating and initializing the View.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
public virtual BaseInfoRegistrator BaseInfo { get; }

#Property Value

Type Description
DevExpress.XtraGrid.Registrator.BaseInfoRegistrator

A DevExpress.XtraGrid.Registrator.BaseInfoRegistrator object containing information necessary to create and initialize the View.

#Remarks

The property supports the internal grid control’s infrastructure and should not be used in your applications.

The BaseInfo object provides virtual methods that return information necessary to initialize a View when it is created. This information includes the type of objects that will paint the view, contain its View information, response to end-user actions, etc. When creating your own view, you need to create a DevExpress.XtraGrid.Registrator.BaseInfoRegistrator descendant containing information about your View and then add it to the GridControl.AvailableViews collection.

See Also