Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The DblClickToEdit property determines if double clicking a cell puts it into edit mode. There are three ways for a user to enter edit mode in an unprotected cell. They can start typeing while a cell is selected, press the EDIT function key (see the FunctionKey property), or double-click in a cell.

...

If you do not want the user to edit a cell at all, use the CellProtection property.

Example

Code Block
// Do not allow users to edit a cell by double clicking  
Set_Property(@Window:".OLE_EDITTABLE", "OLE.DblClickToEdit", 0)  

// Allow users to edit a cell by double clicking  
Set_Property(@Window:".OLE_EDITTABLE", "OLE.DblClickToEdit", 1)

See Also

FunctionKeyCellProtection