4D v13

PV GET DRAG SIGNATURES

Home

 
4D View v13
PV GET DRAG SIGNATURES

PV GET DRAG SIGNATURES 


 

PV GET DRAG SIGNATURES ( Bereich ; Signatur ) 
Parameter Typ   Beschreibung
Bereich  Lange Ganzzahl in 4D View Bereich
Signatur  Array String in Array Signatur

Der Befehl PV GET DRAG SIGNATURES erstellt das Array Signatur aus den Drag Signaturen für Bereich.

Signatur ist ein alphanumerischer String mit beliebigem Inhalt. Er darf max. 32 Zeichen lang sein.

Zeige einen Hilfetext, wenn für den Bereich ein internes Drag and Drop zutrifft.

 ARRAY TEXT($DragSignatureArray;0)
 ARRAY TEXT($DropSignatureArray;0)
 C_TEXT(Hilfemeldung)
 C_INTEGER($Index)
 
 PV GET DRAG SIGNATURES(Bereich;$DragSignatureArray)
 PV GET DROP SIGNATURES(Bereich;$DropSignatureArray)
 Hilfetext:=""
 For($Index;1;Size of array($DragSignatureArray)) `Suche nach gemeinsamer Signatur
    If(Find in array($DropSignatureArray;$DragSignatureArray{$Index})#-1)
       Hilfetext:="Sie können in diesem Bereich mit Drag and Drop arbeiten."
       $Index:=Size of array($DragSignatureArray)
    End if
 End for

 
EIGENSCHAFTEN 

Produkt: 4D
Thema: PV Drag and Drop
Nummer: 15836

 
INDEX

Alphabetische Liste der Befehle

 
GESCHICHTE 

Erstellt: 4D View 6.8

 
SIEHE AUCH 

PV GET DROP SIGNATURES
PV SET DRAG SIGNATURES