XULTreeView.drop Member

Internal.

Syntax

object.drop(index, orientation);

Arguments

ArgumentSummary
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 && ("drop" in row) && row.drop(orientation));
}