> For the complete documentation index, see [llms.txt](https://docs.gapvelocity.ai/webmap/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gapvelocity.ai/webmap/general/frontend/documentation/winforms-angular-components/web-components/kendoui-components/radiobutton.md).

# RadioButton

Adds supports for \[System.Windows.Forms.radiobutton]\(<https://msdn.microsoft.com/en-us/library/system.windows.forms.radiobutton(v=vs.110).aspx>)

## Implementation  Details:

> **Component Selector:** 'wm-radiobutton'
>
> **Kendo UI Component:** [Kendo Forms RadioButtons](https://www.telerik.com/kendo-angular-ui/components/forms/#toc-radiobuttons)

## Class inheritance

RadioButtonComponent extends [ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md).

## PME Support

### Properties

| Property            | Get/Set | Notify Changes | Details                                                                                                                                                                                                                                                                                                           |
| ------------------- | ------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| text: string        | Yes     | Yes            | Inherited from ControlComponent [see ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md).                                                                                                                                   |
| name: string        | Yes     | No             | In order to group multiple radio buttons they must be called with the same name. Inherited from ControlComponent [see ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md).                                                  |
| enabled: boolean    | Yes     | No             | This property sets or returns whether a radio button should be disabled, or not. A disabled element is unusable and un-clickable. Inherited from ControlComponent [see ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md). |
| checked: boolean    | Yes     | Yes            | Specifies whether a radio button should be checked or not.                                                                                                                                                                                                                                                        |
| value : any         | Yes /No | No             | Specifies the value of the radio element.                                                                                                                                                                                                                                                                         |
| appearance : string | Yes /No | No             | Specifies the appearance of the radio button (Button or Normal).                                                                                                                                                                                                                                                  |
| image: string       | Get     | No             | Returns the image path to show the image in the control.                                                                                                                                                                                                                                                          |

### Methods

| Method | Supported | Details |
| ------ | --------- | ------- |
| None   | None      | None    |

### Events

| Event          | Supported | Parameter       | Details                          |
| -------------- | --------- | --------------- | -------------------------------- |
| checkedChanged | Yes       | **$event**: any | Triggers `CheckedChanged` event. |
