windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-baseview-f4c8e00d.md
Gets an object providing information for creating and initializing the View.
Namespace : DevExpress.XtraGrid.Views.Base
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[Browsable(false)]
public virtual BaseInfoRegistrator BaseInfo { get; }
<Browsable(False)>
Public Overridable ReadOnly Property BaseInfo As BaseInfoRegistrator
| Type | Description |
|---|---|
| DevExpress.XtraGrid.Registrator.BaseInfoRegistrator |
A DevExpress.XtraGrid.Registrator.BaseInfoRegistrator object containing information necessary to create and initialize the View.
|
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