FlexPivot for WinForms
RowDetailProvider プロパティ (C1FlexGridBase)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス : RowDetailProvider プロパティ
Gets or sets the delegate method which creates the detail control for displaying.
シンタックス
'宣言
 
Public Property RowDetailProvider As RowDetailProvider
public RowDetailProvider RowDetailProvider {get; set;}
解説

The delegate should always return the new instance of detail control as multiple detail controls can be shown in the C1FlexGrid at once.

The detail control should support IC1FlexGridRowDetail interface

The default value for this property is null.

使用例
The code below assignes delegate which creates C1InputPanel row detail control:
// assign delegate which creates row detail
flexGrid.RowDetailProvider = (g, r) => new C1InputPanelRowDetail();
参照

C1FlexGridBase クラス
C1FlexGridBase メンバ