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

<elseif>

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

<elseif condition="x">anyXml</else>

Results in C#:

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

Must follow an element that produces an if/elseif statement. Contains material that will be rendered if all preceding conditions are false, and the expression x evaluates to true.

Clone this wiki locally