ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Print functions
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
Modifies the parameters of a report found in a group of reports.
Example
// Prepare a group of reports
nIndex is int = iGroupAdd(RPT_TO_Year_A4_Portrait, 2012)
iGroupConfigure(nIndex, "Statistics 2012 - Portrait", "stat2012.png")
nIndex = iGroupAdd(RPT_TO_Year_A4_Portrait, 2011)
iGroupConfigure(nIndex, "Statistics 2011 - Portrait", "stat2011.png")
iGroupPrint()
Syntax

Modifying the parameters of a report identified by its name Hide the details

iGroupConfigure(<Report name> , <Caption> [, <Image>])
<Report name>: Character string
Name of the report to be used. This report was added into the group by iGroupAdd.
<Caption>: Character string
Caption associated with the specified report. This caption will be displayed in the combo box presenting the reports of the group.
<Image>: Character string
Name of the image associated with the report. This image will be displayed in the combo box presenting the group reports. This image can correspond to an image found in the library of the application or to the full path of an image file.
Remark: We recommend using a 48 x 48 pixel image. If a bigger image is used, it will be proportionally resized.
Remark: no Image variable can be used.

Modifying the parameters of a report identified by its index in the group Hide the details

iGroupConfigure(<Report index> , <Caption> [, <Image>])
<Report index>: Integer
Index of the report to use. This index was returned by iGroupAdd when the report was added to the group.
<Caption>: Character string
Caption associated with the specified report. This caption will be displayed in the combo box presenting the reports of the group.
<Image>: Character string
Name of the image associated with the report. This image will be displayed in the combo box presenting the group reports. This image can correspond to an image found in the library of the application or to the full path of an image file.
Remark: We recommend using a 48 x 48 pixel image. If a bigger image is used, it will be proportionally resized.
Remark: no Image variable can be used.
Component: wd290etat.dll
Minimum version required
  • Version 18
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help