# Enable/Disable >![](../../public_sys-resources/icon-note.gif) **NOTE:** >This attribute is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version. ## Required Permissions None ## Attributes

Name

Type

Default Value

Description

enabled

boolean

true

The value true means that the component is available and can respond to operations such as clicking. The value false means that the component does not respond to operations such as clicking.

## Example ``` @Entry @Component struct EnabledExample { build() { Flex({ justifyContent: FlexAlign.SpaceAround }) { // No response upon a click. Button('disable').enabled(false).backgroundColor(0x317aff).opacity(0.4) Button('enable').backgroundColor(0x317aff) } .width('100%') .padding({ top: 5 }) } } ``` ![](figures/enabled.gif)