AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The ValuePerStar property gets and sets the value of a star in a Rating control.
Remark: This property corresponds to the "Value of a 'star'" option available in the "General" tab of the description window of the Rating control.
Example
// To use values from 0 to 100 in RATE_Rating1
 
// The control displays from 0 to 5 stars
RATE_Rating1.MaxValue = 5
// The value of each star is set to 20
RATE_Rating1.ValuePerStar = 20
// The values displayed in the control go from 0 to 100 (5 * 20)
Syntax

Getting the value of a star in a Rating control Hide the details

<Result> = <Rating control>.ValuePerStar
<Result>: Real
Value associated with a star.
<Rating control>: Control name
Name of the Rating control to use.

Changing the value of a star in a Rating control Hide the details

<Rating control>.ValuePerStar = <New value>
<Rating control>: Control name
Name of the Rating control to use.
<New value>: Real
New value associated with a star (or with any other graphic logo used in the Rating control). This value must be greater than 0. Otherwise, this value is ignored.
Remarks
  • By default, the value of a star (or any other logo) in the Rating control is set to 1.
  • The Value property of the Rating control corresponds to the number of stars multiplied by the value of the ValuePerStar property.
  • The maximum number of stars in a Rating control is returned by the MaxValue property.
Versión mínima requerida
  • Versión 21
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 06/02/2024

Señalar un error o enviar una sugerencia | Ayuda local