|
|
|
|
|
- Use conditions
- Using the <Looper>.BreakIndex function
<Looper>.BreakIndex (Función)
Advertencia
A partir de la versión 28 (75), .BreakSubscript se conserva por motivos de compatibilidad. Esta función ha sido reemplazada por <Looper>.BreakIndex.
Returns the index of the break header and footer for a given break in a Looper control: - The index of the header for a given break also corresponds to the index of the first row in this break.
- The index of the footer for a given break also corresponds to the index of the last row in this break.
MaRépétition is int = 1
DébutRupture is int
FinRupture is int
Indice is int
Total is int
WHILE MaRépétition <= ZR_Factures.Occurrence
Total = 0
DébutRupture = RUPT_HautClient.IndiceRupture(MaRépétition)
FinRupture = RUPT_BasClient.IndiceRupture(MaRépétition)
FOR Indice = DébutRupture TO FinRupture
Total += ATT_Valeur[Indice]
END
ATT_Total[FinRupture] = Total
MaRépétition = FinRupture + 1
END
Sintaxis
<Result> = <Break header/footer>.BreakIndex([<Index>])
<Result>: Integro - Index of the header/footer break specified in the break containing the row at index <Index>,
- 0 if an error occurs. To get more details on the error, use ErrorInfo with the errMessage constant.
<Break header/footer>: Nombre del control Name of the break header or footer to be used. This parameter can correspond to:- the name of the break header or break footer directly.
- <Name of Looper control>.<Name of break header/footer>
<Index>: Entero opcional Index of one of the rows in the desired break. If this parameter is not specified, the index of the header/footer break specified in the break containing the current row is returned. Observaciones Use conditions La función <Looper>.BreakIndex puede utilizarse en: - un control Looper basado en un archivo de datos,
- un control Looper rellenado mediante programación.
Using the <Looper>.BreakIndex function It is recommended to call <Looper>.BreakIndex once the Looper control is displayed in its entirety. Otherwise, the indexes returned by <Looper>.BreakIndex may not correspond to the actual indexes displayed in the Looper control.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|