[]
        
(Showing Draft Content)

C1.Win.FlexGrid.C1FlexGridBase.RowDetailProvider

RowDetailProvider Property

RowDetailProvider

Gets or sets the delegate method which creates the detail control for displaying.

Declaration
[Browsable(false)]
public RowDetailProvider RowDetailProvider { get; set; }
Remarks

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.

Examples

The code below assignes delegate which creates C1InputPanel row detail control:

// assign delegate which creates row detail
flexGrid.RowDetailProvider = (g, r) => new C1InputPanelRowDetail();