# Rating

## Basic Rating

```powershell
New-UDRating 
```

![](https://1373299915-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8F6PrkNTG8Y34hADzKOL%2Fuploads%2Fgit-blob-e95116aba89e8595f06352895e6bfa1333686aed%2Fimage%20\(186\).png?alt=media)

## OnChange

Take action when the rating is changed.

```powershell
New-UDRating -OnChange {
    Show-UDToast $EventData
}
```

## Maximum

Change the maximum rating.

![](https://1373299915-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8F6PrkNTG8Y34hADzKOL%2Fuploads%2Fgit-blob-269f93c5d7b808e19aa72149bf4af14d9eb2964e%2Fimage%20\(203\).png?alt=media)

```powershell
New-UDRating -Max 10
```

## Precision

Change the precision for ratings.

![](https://1373299915-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8F6PrkNTG8Y34hADzKOL%2Fuploads%2Fgit-blob-daed79150e09c1ace27377741679036c58f9572a%2Fimage%20\(299\).png?alt=media)

```powershell
New-UDRating -Precision .5
```

## Size

Change the size of the rating icons.

![](https://1373299915-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F8F6PrkNTG8Y34hADzKOL%2Fuploads%2Fgit-blob-8b493c53b66efc46e1762b0786e9eecc87fafa88%2Fimage%20\(316\).png?alt=media)

```powershell
New-UDRating -Size large
```
