Condition¶
計算条件 (もしくは格子生成条件) での入力項目が有効になる場合の 条件の情報を保持します。
例¶
1 | <Condition conditionType="isEqual" target="type" value="1" /> |
1 2 3 4 | <Condition conditionType="and"> <Condition conditionType="isEqual" target="type" value="1" /> <Condition conditionType="isEqual" target="inflow" value="0" /> </Condition> |
例は ????? も参照して下さい。
属性¶
名前 | 値 | 必須 | 説明 |
---|---|---|---|
conditionType | 下の表を参照 | ○ | 条件の種類 |
target | 文字列 | △ | 比較対象の計算条件の名前。 conditionType が and, or, not の場合に指定する。 |
value | 文字列 | △ | 比較対象の値。 conditionType が and, or, not の場合に指定する。 |
値 | 意味 |
---|---|
isEqual | 等しい |
isGreaterEqual | 等しいか大きい |
isGreaterThan | 大きい |
isLessEqual | 等しいか小さい |
isLessThan | 小さい |
and | and |
or | or |
not | not |