WP Get style sheet
WP Get style sheet ( wpDoc ; nomHojaEstilo ) -> Resultado
Parámetro | Tipo | Descripción | |
---|---|---|---|
wpDoc | Object | → | Documento 4D Write Pro |
nomHojaEstilo | Text | → | Nombre de hoja de estilo |
Resultado | Object | ← | Objeto de hoja de estilo |
Descripción
El comando WP Get style sheet devuelve el objeto de hoja de estilo designado por nomHojaEstilo.
En wpDoc, pase el documento 4D Write Pro que contiene la hoja de estilo.
El parámetro nomHojaEstilo le permite especificar el nombre de la hoja de estilo a devolver. Si el nombre de la hoja de estilo no existe en wpDoc, se devuelve un objeto nulo.
Ejemplo
Para recuperar la hoja de estilo "Main title":
var $styleSheet : Object
$styleSheet:=WP Get style sheet(wpArea;"Main title")
If($styleSheet=Null) // verifica si la hoja de estilo existe//si no la crea
$styleSheet:=WP New style sheet(wpArea;wk type paragraph;"Main title")
End if
Ver también
Acceder a contenidos de documentos por programación
WP DELETE STYLE SHEET
WP Get style sheets
WP IMPORT STYLE SHEETS
WP New style sheet