| 4D v13PV GET DRAG SIGNATURES | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|  | 
    4D View v13
 PV GET DRAG SIGNATURES 
         | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| PV GET DRAG SIGNATURES ( Bereich ; Signatur ) | ||||||||
| Parameter | Typ | Beschreibung | ||||||
| Bereich | Lange Ganzzahl |   | 4D View Bereich | |||||
| Signatur | Array String |   | 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
	Produkt: 4D
	Thema: PV Drag and Drop
	Nummer: 
        15836
        
        
        
	
     Alphabetische Liste der Befehle
    Alphabetische Liste der Befehle
	Erstellt: 4D View 6.8
PV GET DROP SIGNATURES
PV SET DRAG SIGNATURES