Saltar para o conteúdo principal
Versão: Próximo

VP Get default style

VP Get default style ( vpAreaName : Text { ; sheet : Integer } ) : Object

ParâmetroTipoDescrição
vpAreaNameText->Nome da área 4D View Pro no formulário
sheetInteger->Índice da folha (folha atual se omitida)
ResultadosObject<-Configurações de estilo padrão

Descrição

O comando VP Get default style retorna um objeto de estilo padrão para uma folha. The returned object contains basic document rendering properties as well as the default style settings (if any) previously set by the VP SET DEFAULT STYLE method. For more information about style properties, see Style Objects & Style Sheets.

Em vpAreaName, passe o nome da propriedade da área 4D View Pro. Se passar um nome que não existe, é devolvido um erro.

You can define where to get the column count in the optional sheet parameter using the sheet index (counting begins at 0). Se omitido ou se você passar vk current sheet, a planilha atual será usada.

Exemplo

Para obter os detalhes sobre o estilo predefinido para este documento:

Este código:

$defaultStyle:=VP Get default style("myDoc")

will return this information in the $defaultStyle object:

{
backColor:#E6E6FA,
hAlign:0,
vAlign:0,
font:12pt papyrus
}

Veja também

VP Get cell style
VP SET DEFAULT STYLE