pc:hideme

Previous Next

Suppresses the writing, to the standard output, of a copy of the parent element.

This is a top-level attribute. Its purpose is to suppress, from your output, the top-level element of your script.

Syntax

<element pc:hideme="{ yes | no }"

 
   content

 
</element>

As the examples show, in practice, this attribute is used for the document node (the top-level node) of the USoft Blend script. In the typical usage of USoft Blend, if you do not pass pc:hideme="true", this document node is the only node that is copied to the output by default.

Examples

Input

Output

<example xmlns:pc="Processing.Command" >
    content 
</example>

<example> 
    content
</example>

<example xmlns:pc="Processing.Command" pc:hideme="true"
     content 
</example>

 

    content

<example xmlns:pc="Processing.Command" pc:hideme="false" > 
     content  
</example>

<example 
  xmlns:pc="Processing.Command"
  pc:hideme="false" >
       content 

</example>