C1.Win.FlexGrid Namespace / C1FlexGrid Class / RowDetailProvider Property

RowDetailProvider Property (C1FlexGrid)
Gets or sets the delegate method which creates the detail control for displaying.
Syntax
'Declaration
 
Public Property RowDetailProvider As RowDetailProvider
 
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.

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