Alchemy/docs/articles/ja/attributes/disable-if.md
2024-02-19 10:59:29 +09:00

28 lines
687 B
Markdown

# Disable If Attribute
対象のメンバーのbool値がtrueの場合、フィールドが編集不可能になります。
![img](../../../images/img-attribute-disable-if-false.png)
![img](../../../images/img-attribute-disable-if-true.png)
```cs
public bool isDisabled;
public bool IsDisabled => isDisabled;
public bool IsDisabledMethod() => isDisabled;
[DisableIf("isDisabled")]
public int disableIfField;
[DisableIf("IsDisabled")]
public int disableIfProperty;
[DisableIf("IsDisabledMethod")]
public int disableIfMethod;
```
| パラメータ | 説明 |
| - | - |
| Condition | 条件の判定に使用するフィールド、プロパティまたはメソッドの名前 |