TextBoxActiveXControl.IsDragBehaviorEnabled

TextBoxActiveXControl.IsDragBehaviorEnabled property

Indicates whether dragging and dropping is enabled for the control.

public bool IsDragBehaviorEnabled { get; set; }

Examples

[C#]
if(!activeXControl.IsDragBehaviorEnabled)
{
    activeXControl.IsDragBehaviorEnabled = true;
}

See Also