'Declaration Public Overloads Sub EnterEdit( _ ByVal mouseButton As MouseButtons, _ ByVal mousePosition As Point _ )
'Usage Dim instance As Cell Dim mouseButton As MouseButtons Dim mousePosition As Point instance.EnterEdit(mouseButton, mousePosition)
public void EnterEdit( MouseButtons mouseButton, Point mousePosition )
Parameters
- mouseButton
- A System.Windows.Forms.MouseButtons value that will be used in the cell editor's System.Windows.Forms.Control.MouseDown event. The cell editor's ICellEditor.HandleActivationClick property must be set to true.
- mousePosition
- A System.Drawing.Point representing the position of the mouse. The cell editor's ICellEditor.HandleActivationClick property must be set to true.