feat(pdfburner): Berechnung für Anmerkungsindex innerhalb der Signaturgruppe hinzufügen
This commit is contained in:
parent
dbf42e13d9
commit
fa8d2f5f62
@ -73,12 +73,14 @@ Namespace Jobs.FinalizeDocument
|
||||
Dim annotCountPerSign = 5
|
||||
Dim annotIndex = 1
|
||||
Dim calcSignIndex = Function() CInt(Math.Ceiling(CDbl(annotIndex) / CDbl(annotCountPerSign)))
|
||||
Dim calcAnnotIndexInSign = Function() (annotIndex - 1) Mod annotCountPerSign + 1
|
||||
|
||||
Dim formFieldIndex = 0
|
||||
For Each oAnnotation In oAnnotationData.annotations
|
||||
Logger.Debug("Adding AnnotationID: " + oAnnotation.id)
|
||||
|
||||
Dim signIndex = calcSignIndex()
|
||||
Dim annotIndexInSign = calcAnnotIndexInSign()
|
||||
|
||||
Select Case oAnnotation.type
|
||||
Case ANNOTATION_TYPE_IMAGE
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user