Options.DragAndDropText property (Publisher)
True to enable dragging of text. Read/write Boolean.
Syntax
expression.DragAndDropText
expression A variable that represents an Options object.
Return value
Boolean
Example
This example sets global options for Microsoft Publisher, including enabling dragging to reposition text.
Sub SetGlobalOptions()
With Options
.AutoFormatWord = True
.AutoKeyboardSwitching = True
.AutoSelectWord = True
.DragAndDropText = True
.UseCatalogAtStartup = False
.UseHelpfulMousePointers = False
End With
End Sub
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.