Skip to main content
.NET 6.0+

PropertyCollectionSource.ObjectTypeInfo Property

Provides metadata information on the type of the objects contained in the PropertyCollectionSource‘s collection.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public override ITypeInfo ObjectTypeInfo { get; }

Property Value

Type Description
ITypeInfo

An ITypeInfo object which provides metadata information on the type of the objects contained in the Collection Source’s collection.

Remarks

The ObjectTypeInfo‘s properties supply metadata on the objects contained in the Collection Source’s collection. Use the following members of the object returned by this property to get information on the type of the objects contained in the Collection Source’s collection:

  • Type - a type of the objects contained in the Collection Source’s collection
  • Name - a name of the Type type
  • FullName - a fully qualified name of the Type type (includes namespace)
  • IsPersistent - true if the Type is persistent; otherwise false
  • IsAbstract - true if the Type is abstract; otherwise false
See Also