if (anchor == Anchor.LEADING) {
layer.setAttribute("left", bounds.left() + "px");
layer.setAttribute("width", bounds.width + "px");
}
if (anchor == Anchor.TRAILING) {
layer.setAttribute("right", getBounds().width - bounds.right() + "px");
layer.setAttribute("width", bounds.width + "px");
}
if (anchor == Anchor.BOTH) {
layer.setAttribute("left", bounds.left() + "px");
layer.setAttribute("right", getBounds().width - bounds.right() + "px");