Skip to main content

BaseView.BaseInfo Property

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

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v23.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