XPDataView(XPDictionary, XPClassInfo) Constructor
In This Article
Initializes a new instance of the XPDataView class, and populates it with columns based on the specified settings.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
public XPDataView(
XPDictionary dictionary,
XPClassInfo classInfo
)
#Parameters
Name | Type | Description |
---|---|---|
dictionary | XPDictionary | An XPDictionary object which represents the metadata provider. This value is assigned to the XPData |
class |
XPClass |
An XPClass |
#Remarks
This constructor performs the following:
- Obtains a list of persistent properties from an object whose metadata information is passed as the classInfo parameter, via XPClassInfo.PersistentProperties.
- Populates the data view with columns, by calling the appropriate XPDataView.PopulateProperties overloaded method and passing the list of persistent properties as its memberInfoList parameter.
See Also