# setFontWeight

### Parameters

1. ControlId
2. FontWeight - one of those: "normal", "bold"

### Example Usages

*Set to bold*

```javascript
   brixxApi.setFontWeight("myControl", "bold");
```

*Set to normal*

```javascript
   brixxApi.setFontWeight("myControl", "normal");
   brixxApi.setFontWeight("myControl"); //you can skip param2 if you want to set it back to normal
```
