次の方法で共有


IDefaultColumnGroup インターフェイス

定義

既定のグループを定義するエクスポート。

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

注釈

これは MEF エクスポートであり、次の属性で注釈を付ける必要があります。

[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.

グループ化は、ManagerType、DataSourceType & DataSource 制約がすべて満たされている場合にのみ表示されます。 さらに、すべての GroupColumns が少なくとも 1 つの ITableDataSourceによって提供されない限り、グループ化は表示されません。

このインターフェイスの定義は意図的に空です (すべてのデータはメタデータを介して提供されます)。

適用対象