XULTreeView.canDrop Member
Internal.
Syntax
object.canDrop(index, orientation);
Arguments
Argument | Summary |
---|---|
index | |
orientation |
Returns
Remarks
See Also
Source Code
function xtv_drop (index, orientation)
{
var row = this.childData.locateChildByVisualRow (index);
//ASSERT(row, "bogus row " + index);
return (row && ("canDrop" in row) && row.canDrop(orientation));
}