= with( local!brown: type!PdfColor( r: 139, g: 69, b: 19 ), local!black: type!PdfColor( r: 0, g: 0, b: 0 ), local!fox: { rule!PdfText( value: "The ", style: rule!PdfStyle( fontSize: 20 ) ), rule!PdfText( value: "quick ", style: rule!PdfStyle( fontSize: 18 ) ), rule!PdfText( value: "brown ", style: rule!PdfStyle( fontSize: 16, color: local!brown/* change the text color of this PdfText to brown */ ) ), rule!PdfText( value: "fox ", style: rule!PdfStyle( fontSize: 14, color: local!black/* change the color back to black, otherwise it will remain brown */ ) ), rule!PdfText( value: "jumps ", style: rule!PdfStyle( fontSize: 12 ) ), rule!PdfText( value: "over ", style: rule!PdfStyle( fontSize: 10 ) ), rule!PdfText( value: "the ", style: rule!PdfStyle( fontSize: 8 ) ), rule!PdfText( value: "lazy ", style: rule!PdfStyle( fontSize: 6 ) ), rule!PdfText( value: "dog", style: rule!PdfStyle( fontSize: 4 ) ) }, { /* top */rule!PdfContent( page: 1, sections: { rule!PdfSection( components: local!fox ) } ), /* right */rule!PdfContent( page: 1, angle: 270, xPercent: 45, sections: { rule!PdfSection( components: local!fox ) } ), /* bottom */rule!PdfContent( page: 1, angle: 180, xPercent: 45, yPercent: 67, sections: { rule!PdfSection( components: local!fox ) } ), /* left */rule!PdfContent( page: 1, angle: 90, yPercent: 67, sections: { rule!PdfSection( components: local!fox ) } ) } )