Version

dragMarkup Property

Gets sets the custom drag markup that will be used to simulate an element during the Drag operation. If no markup is specified, a clone will be made of the source element, and that will be used. If your drag markup will change based on what is being dragged, you can set the drag markup as late as the DragStart event. If you do not want any drag markup, you can pass in a empty element, such as document.createElement("div").
Syntax
ASP.NET Ajax Javascript (Specification) 
function get_dragMarkup() : {Any}
function set_dragMarkup(value : {Any})
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfDragDropBehavior.get_dragMarkup();

Return Value

Reference to html element which was set by set_dragMarkup.
See Also