'Declaration Protected Function New( _ ByVal templateControl As Control, _ ByVal inPlace As Boolean, _ ByVal handleActivationClick As Boolean _ )
'Usage Dim templateControl As Control Dim inPlace As Boolean Dim handleActivationClick As Boolean Dim instance As New CellEditorManager(templateControl, inPlace, handleActivationClick)
protected CellEditorManager( Control templateControl, bool inPlace, bool handleActivationClick )
Parameters
- templateControl
- A reference to a System.Windows.Forms.Control representing the control that will be used as a template to create the controls that will edit the content of cells.
- inPlace
- true if the System.Windows.Forms.Control is painted within the bounds of the cell; false otherwise.
- handleActivationClick
- Indicates if the control should handle the mouse click once it is activated. Only in the case where inPlace is set to true does it make sense for handleActivationClick to also be set to true.