4D v16

WP Get page count

Home

 
4D v16
WP Get page count

WP Get page count 


 

WP Get page count ( wpDok ) -> Funktionsergebnis 
Parameter Typ   Beschreibung
wpDok  Objekt in 4D Write Pro Dokument
Funktionsergebnis  Lange Ganzzahl in Anzahl Seiten im Dokument

Die Funktion WP Get page count gibt die Gesamtanzahl der Seiten zurück, definiert im 4D Write Pro Dokument wpDok.

Die gesamte Seitenanzahl im 4D Write Pro Dokument herausfinden, gespeichert im Feld "Handbuch" in der aktuellen Auswahl der Einträge. Sie schreiben folgenden Code:

 C_LONGINT($pageCount)
 C_LONGINT($totalCount)
 FIRST RECORD([Items])
 While(Not(End selection([Items]))
    $pageCount:=WP Get page count([Items]Handbuch)
    $totalCount:=$totalCount+$pageCount
    NEXT RECORD([Items])
 End while
 ALERT("Gesamte Seitenanzahl im Handbuch: "+String($totalCount))

 
EIGENSCHAFTEN 

Produkt: 4D
Thema: 4D Write Pro Programmiersprache

 
GESCHICHTE 

New
Erstellt: 4D v16

 
ARTIKELVERWENDUNG

4D Write Pro Handbuch ( 4D v16)