with

The with statement saves typing. Its argument becomes a prefix to the declarations within braces.

with(tags.P) {  
  marginTop = 30;
  marginBottom = 50;
  marginRight = 40;
  marginLeft = 60;  }