|
|
|
|
|
iColumnNum (Function) In french: iNumColonne Returns the number of the current column in a multicolumn report. Note: This function can only be used with reports created with the report editor..
MaColonneCourante is int
MaColonneCourante = iColumnNum()
SWITCH MaColonneCourante
CASE 1:
MySelf.CouleurFond = LightRed
CASE 2:
MySelf.CouleurFond = LightGreen
END
Syntax <Result>: Integer - Number of the column currently printed,
- -1 if an error occurred.
- 1 if the current report is not a multicolumn report.
Remarks - The column numbers start from 1.
- NbColumn is used to find out the number of columns in the current report.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|