4D View v14

PV GET DRAG SIGNATURES

Inicio

 
4D View v14
PV GET DRAG SIGNATURES

PV GET DRAG SIGNATURES 


 

PV GET DRAG SIGNATURES ( area ; firmas ) 
Parámetro Tipo   Descripción
area  Entero largo in Área 4D View
firmas  Array cadena in Array de firmas

El comando PV GET DRAG SIGNATURES recupera en el array firmas las firmas de arrastrar de area.

Las firmas son cadenas alfanuméricas cuyo contenido es libre. La longitud máxima de una firma es de 32 caracteres.

Ejemplo  

Mostrar un mensaje de ayuda en casos donde el área puede ser objeto de un arrastrar soltar interno.

 ARRAY TEXT($DragSignatureArray;0)
 ARRAY TEXT($DropSignatureArray;0)
 C_TEXT(HelpMessage)
 C_INTEGER($Index)
 
 PV GET DRAG SIGNATURES(Area;$DragSignatureArray)
 PV GET DROP SIGNATURES(Area;$DropSignatureArray)
 HelpMessage:=""
 For($Index;1;Size of array($DragSignatureArray)) `Buscamos una firma común
    If(Find in array($DropSignatureArray;$DragSignatureArray{$Index})#-1)
       HelpMessage:="Puede arrastrar y soltar al interior de esta área."
       $Index:=Size of array($DragSignatureArray)
    End if
 End for

 
PROPIEDADES 

Producto: 4D View
Tema: PV Arrastrar y soltar
Número 15836

 
HISTORIA 

Creado por: 4D View 6.8

 
VER TAMBIÉN 

PV GET DROP SIGNATURES
PV SET DRAG SIGNATURES

 
ARTICLE USAGE

4D View - Lenguaje ( 4D View v11.4)
4D View - Lenguaje ( 4D View v12)
4D View - Lenguaje ( 4D v13)
4D View - Lenguaje ( 4D View v14 R2)
4D View - Lenguaje ( 4D View v14)
4D View - Lenguaje ( 4D View v14 R3)
4D View - Lenguaje ( 4D View v14 R4)