IDefaultColumnGroup Schnittstelle

Definition

Ein Export zum Definieren einer Standardgruppe.

public interface class IDefaultColumnGroup
public interface IDefaultColumnGroup
type IDefaultColumnGroup = interface
Public Interface IDefaultColumnGroup

Hinweise

Dabei handelt es sich um einen MEF-Export, der mit den folgenden Attributen kommentiert werden muss:

[Export(typeof(IDefaultColumnGroup))]
[Name(nameof(ProjectAndDefinitionGroupingSet))]             // Requied, name of the default group
[Order(After = ...)]                                        // Optional, specifies the default location of the grouping in the dropdown.
[ManagerType(...)]                                          // Optional, the names of the TableManagers that support this grouping.
[DataSourceType(...)]                                       // Optional, the names of the data source types that support this grouping.
[DataSource(...)]                                           // Optional, the names of the data sources that support this grouping.
[GroupColumns(...)]                                         // Required, the names of the columns in the grouping.

Gruppierungen werden nur angezeigt, wenn die DataSource-Einschränkungen "managertype" und "DataSourceType" & erfüllt sind. Außerdem wird eine Gruppierung nicht angezeigt, es sei denn, alle groupcolumns werden von mindestens einem bereitgestellt ITableDataSource .

Die Definition dieser Schnittstelle ist absichtlich leer (alle Daten werden über die Metadaten bereitgestellt).

Gilt für