Silent

Suppresses output produced by code within the body of the component.

Component Signature

<bx:Silent  />

Attributes

This tag does not accept any attributes

Examples

Example for bx:silent tag

Content within bx:silent tag will not be displayed

 <bx:set a = 10 > 
 <bx:set b = 5 > 
 <bx:silent> 
    <bx:output> This is from inside bx:silent #a + b# </bx:output> 
 </bx:silent> 
 <bx:output>This is from outside bx:silent #a - b#</bx:output> 

Result: This is from outside bx:silent 5

Last updated

Was this helpful?