'Declaration Public Function New( _ ByVal templateControl As Control, _ ByVal propertyName As String, _ ByVal inPlace As Boolean, _ ByVal handleActivationClick As Boolean _ )
'Usage Dim templateControl As Control Dim propertyName As String Dim inPlace As Boolean Dim handleActivationClick As Boolean Dim instance As New CellEditorManager(templateControl, propertyName, inPlace, handleActivationClick)
public CellEditorManager( Control templateControl, string propertyName, 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.
- propertyName
- A string representing the property used to get the control's value.
- 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.