Class PrecisionType
Specifies the precision type of the rating. It is used to component the granularity of the rating, allowing users to provide ratings with varying levels of precision.
Inheritance
System.Object
PrecisionType
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class PrecisionType : Enum
Fields
Exact
The rating is increased in increments of 0.1. For example, if the current rating is 3.9, the next possible ratings are 4, 4.1, 4.2, and so on.
Declaration
public const PrecisionType Exact
Field Value
Type |
---|
PrecisionType |
Full
The rating is increased in whole number increments. For example, if the current rating is 3, the next possible ratings are 4, 5, and so on.
Declaration
public const PrecisionType Full
Field Value
Type |
---|
PrecisionType |
Half
The rating is increased in increments of 0.5 (half). For example, if the current rating is 3.5, the next possible ratings are 4, 4.5, 5, and so on.
Declaration
public const PrecisionType Half
Field Value
Type |
---|
PrecisionType |
Quarter
The rating is increased in increments of 0.25 (quarter). For example, if the current rating is 3.75, the next possible ratings are 4, 4.25, 4.5, and so on.
Declaration
public const PrecisionType Quarter
Field Value
Type |
---|
PrecisionType |