Options.AllowClickAndTypeMouse property (Word)

True if Click and Type functionality is enabled. Read/write Boolean.

Syntax

expression. AllowClickAndTypeMouse

expression An expression that returns an Options object.

Remarks

For more information on Click and Type, see About Click and Type .

Example

This example checks to determine whether Click and Type functionality is enabled. If it isn't enabled, the example sets this functionality based on the user's choice.

If Options.AllowClickAndTypeMouse = False Then 
 x = MsgBox("Do you want to use Click and Type?", _ 
 vbYesNo) 
 If x = vbYes Then 
 Options.AllowClickAndTypeMouse = True 
 MsgBox "Click and Type enabled!" 
 End If 
End If

See also

Options Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.