TdxCustomRatingControlProperties.FillPrecision Property
Specifies the element fill mode.
Declaration
property FillPrecision: TdxRatingControlFillPrecision read; write; default rcfpFull;
Property Value
Type | Default |
---|---|
TdxRatingControlFillPrecision | rcfpFull |
Remarks
Options include:
Value | Meaning |
---|---|
rcfpFull | The rating control fills entire elements (stars) only. The rating value is always rounded down to the nearest integer value. |
rcfpHalf | The rating control uses half-element precision and rounds down the rating value appropriately. Set the Step property to 0.5 to match both property precisions and allow end-users to half-check elements. |
rcfpExact | The rating control fills elements exactly as specified by the rating value, with the precision specified by the Step property. Adjust this property value for in order to allow end-users to check an element up to the clicked point, with the Step precision. |
The default value of the FillPrecision property is rcfpFull.
See Also