Skip to content
RobertTheGrey edited this page Jan 12, 2013 · 1 revision

<test>

Forms a part of an if/elseif/else conditional structure.

<test if="x">anyXml</test>

Results in C#:

if(x)
{
  //anyXml-generated-code
}

Material in a test element will only render if the condition evaluates to true.

Alias: <if condition="">