And Condition

The And Condition

The And Condition can be used to combine other conditions with the AND logical operator.

Example:

<condition type="..." id="standardinstallation">...</condition>
<condition type="..." id="installonwindows">...</condition>

<condition type="and" id="standardinstallation.onwindows">
    <condition type="ref" refid="standardinstallation" />
    <condition type="ref" refid="installonwindows" />
</condition>

Nested Elements

The And condition must have at least one reference to a condition. There is no upper limit for the number of subconditions.

condition

A reference to a condition, which will be evaluated and combined with the other conditions using the AND operator.