public void SetAttribute(Control c, JwLayoutAttributes e)
 {
     _cellAttributes[c] = e;
 }
 //# __________ PROTOCOL :: CONSTRUCTOR __________ #//
 public JwAbstractBorder()
 {
     _controlLayout = new JwLayoutAttributes();
     _controlLayout.HorizontalFill = true;
     _controlLayout.VerticalFill = true;
 }
 //# __________ PROTOCOL :: CELL ATTRIBUTES __________ #//
 public void Add(Control c, JwLayoutAttributes e)
 {
     Add(c);
     SetAttribute(c, e);
 }