DragAndDropText Property

       

True to enable dragging and dropping of text. Read/write Boolean.

expression.DragAndDropText

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

This example sets global options for Microsoft Publisher, including enabling dragging and dropping to reposition text.

Sub SetGlobalOptions()
    With Options
        .AutoFormatWord = True
        .AutoKeyboardSwitching = True
        .AutoSelectWord = True
        .DragAndDropText = True
        .UseCatalogAtStartup = False
        .UseHelpfulMousePointers = False
    End With
End Sub