Share via


Options.DragAndDropText Property

Publisher Developer Reference

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

Syntax

expression.DragAndDropText

expression   A variable that represents a Options object.

Return Value
Boolean

Example

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

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

See Also