4D Write v16

WR FONTS TO ARRAY

Inicio

 
4D Write v16
WR FONTS TO ARRAY

WR FONTS TO ARRAY 


 

WR FONTS TO ARRAY ( fuentes ) 
Parámetro Tipo   Descripción
fuentes  Array cadena in Array de fuentes disponibles

El comando WR FONTS TO ARRAY devuelve la lista de fuentes disponibles en el array fuentes. Esta lista corresponde a la lista desplegable en la paleta Style.

fuentes debe declararse como un array de tipo Alfa o Texto.

Ejemplo  

Usted quiere verificar si las fuentes necesarias para sus plantillas están instaladas en el sistema actual. La tabla [Fonts] contiene la lista de todas las fuentes utilizadas. En el Método base On Startup, puede escribir:

 ARRAY TEXT(aFonts;0)
 WR FONTS TO ARRAY(aFonts)
 ALL RECORDS([Fonts])
 While(Not(End selection([Fonts])))
    If(Find in array(aFonts;[Fonts]Name)=-1)
       ALERT("La fuente "+[Fonts]Name+" es necesaria, por favor instálela.")
    End if
    NEXT RECORD([Fonts])
 End while



Ver también 

WR SET FONT

 
PROPIEDADES 

Producto: 4D Write
Tema: WR Utilitarios
Número 89173

 
HISTORIA 

Creado por: 4D Write 6

 
ARTICLE USAGE

4D Write - Lenguaje ( 4D Write v16)