GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / DraggingObject Property
In This Topic
    DraggingObject Property
    In This Topic
    Gets the object that will be dragged instead of this selected object.
    Syntax
    [Category("Behavior")]
    [Description("The object that will get dragged when this selected object is dragged.")]
    public virtual GoObject DraggingObject {get;}
    Remarks
    This property is used by GoView.GoView.MoveSelection and GoView.GoView.CopySelection. If DragsNode is true, this will return the node that this object is part of, which may be the Parent or a grandparent. If this is a top-level object, the value will be this object itself. By default this will just return this object itself. You should be careful to make sure the value of this property is not confusing to the user. Returning unrelated or varying objects may produce indeterminate behavior.
    See Also