ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Various properties
  • Bounds for a report based on a data file
  • Limits for a report
  • Limits for a window control
  • Limitations
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 MaxValue property is used to:
  • get and set the top value of a report based on a data file. The top value is the maximum value allowed for the search key of the HFSQL data file the report is based on.
  • get the maximum value of the current filter (set by HFilter) on an HFSQL data file, view or query.
  • get the maximum value of a data series in a chart.
  • get and set the maximum value for some types of controls.
Example
WINDEVUser code (UMC)
// Set the maximum value for row 3 of the Progress Bar column
COL_ProgressBar[3].MaxValue = 230
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppAndroidAndroid Widget iPhone/iPadIOS Widget
// Print customers between "DUPONT" and "DURANT"
RPT_MyFileReport.MinValue = "DUPONT"
RPT_MyFileReport.MaxValue = "DURANT"
WINDEVUniversal Windows 10 AppiPhone/iPadUser code (UMC)
// Based on the maximum value defined for the Edit control,
// change the top value
IF EDT_Price.MaxValue < 1,000,000,000 THEN
EDT_Price.MaxValue = 2,000,000,000
END
Syntax

Getting the maximum value of a control or report Hide the details

<Current value> = <Element used>.MaxValue
<Current value>: Character string
Current maximum value:
  • of the report based on a data file.
  • of a control in a window or page.
  • WEBDEV - Server codePHP of the Calendar or Scheduler control in a page. The maximum value represents the maximum date that can be displayed in the control.
<Element used>: Control or report name
This parameter corresponds to:
  • the name of the report used (report based on a data file).
  • the name of the control for which you want to get the maximum value (control in a window or page). The list of the controls that can be manipulated is in the "Limitations" paragraph.

Changing the maximum value of a control or report Hide the details

<Element used>.MaxValue = <New value>
<Element used>: Control or report name
This parameter corresponds to:
  • the name of the report used (report based on a data file).
  • the name of the control for which you want to change the maximum value (control in a window or page).
<New value>: Integer
New maximum value:
  • of the report based on a data file.
  • of the window control. The list of the controls that can be manipulated is in the "Limitations" paragraph.
  • WEBDEV - Server codePHP of the Calendar or Scheduler control in a page. The maximum value represents the maximum date that can be displayed in the control.
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppAndroidAndroid Widget iPhone/iPadIOS WidgetMac CatalystJavaUser code (UMC)Ajax

Getting the maximum value of the current filter Hide the details

<Current value> = <Element used>.MaxValue
<Current value>: : Type of filter used
  • Current maximum value of the filter applied on the specified element. This filter is defined with the HFilter function.
  • Empty string ("") in the following cases:
    • no filter was defined for the specified element.
    • the filter is disabled.
    • no maximum value was specified for the filter.
<Element used>: Character string
Name of the data file, query or view used.
WINDEVWEBDEV - Server codeReports and QueriesUniversal Windows 10 AppAndroidiPhone/iPadMac CatalystUser code (UMC)Ajax

Getting the maximum value of a data series in a chart Hide the details

<Maximum value> = <Series>.MaxValue
<Maximum value>: Integer
Maximum value of the data series. This value only exists if it has been calculated (for example, if the series has been drawn).
<Series>: Character string
Series to use. Use the following syntax: <Chart name>[<Series number>].
Remarks

Bounds for a report based on a data file

Bounds select only those records whose search key is between the bottom value (returned by the MinValue property) and the top value (returned by the MaxValue property).

Limits for a report

The MaxValue property can only be used on reports based on HFSQL data files. When creating the report, you need to specify that the search is bounded by the maximum value.
WINDEVUniversal Windows 10 AppAndroidAndroid Widget iPhone/iPadIOS WidgetJavaUser code (UMC)

Limits for a window control

The maximum value cannot be less than the minimum value. The minimum value is returned by the MinValue property.

Limitations

WINDEV This property can be used on the following types of controls:
  • Scrollbar control,
  • Progress Bar control and Progress Bar columns,
  • Slider control (linear or circular),
  • Spin control,
  • Splitter control,
  • Calendar control,
  • Numeric Edit control (no number greater than the defined value can be entered),
  • Duration Edit control (no duration greater than the defined value can be entered),
  • Range Slider,
  • Rating control.
The default maximum value can be defined in the "Details" tab of the control description window.
WEBDEV - Server codeWEBDEV - Browser codePHP This property can be used on the following types of controls:
  • WEBDEV - Server codePHP Calendar controls.
  • Slider controls.
  • Progress Bar controls.
  • Rating controls.
iPhone/iPadMac Catalyst This property can be used on the following types of controls:
  • Calendar controls.
  • Numeric Edit controls (no number greater than the defined value can be entered).
  • Duration Edit controls (no duration greater than the defined value can be entered),
  • Chart controls.
  • Numeric columns of Table controls.
The default maximum value can be defined in the "Details" tab of the control description window.
Universal Windows 10 App This property can be used on the following types of controls:
  • Numeric Edit controls (no number greater than the defined value can be entered).
  • Duration Edit controls (no duration greater than the defined value can be entered),
  • Chart controls.
  • Calendar controls.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 08/30/2023

Send a report | Local help