GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / ExternalDragDropsOnEnter Property
In This Topic
    ExternalDragDropsOnEnter Property
    In This Topic
    Gets or sets whether OnDragEnter should call DoExternalDrop immediately, to actually create the dropped objects and add them to the document, and so that the user's drag-and-drop from another window will use an instance of a GoToolDragging as the current Tool for dragging around those newly dropped objects.
    Syntax
    [Category("Behavior")]
    [DefaultValue(false)]
    [Description("Whether the user drags newly dropped objects on a drag enter.")]
    public bool ExternalDragDropsOnEnter {get; set;}

    Property Value

    By default this is false. If you set this to true, you will also need to set DragsRealtime to true.
    Remarks
    The current Selection is deleted in OnDragLeave or when the drag-and-drop is cancelled. When this value is true, no external drag image is used (i.e., GetExternalDragImage is not called). This property only makes sense when DragsRealtime is true.
    See Also