|
|
|
|
|
iGroupConfigure (Function) In french: iGroupeParamètre Modifies the parameters of a report found in a group of reports. // 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|