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

VP Get table theme

História
ReleaseMudanças
19 R8Adicionado

VP Get table theme ( vpAreaName : Text ; tableName : Text ) : cs.ViewPro.TableTheme

ParâmetroTipoDescrição
vpAreaNameText->Nome de objeto formulário área 4D View Pro
tableNameText->Nome da tabela
Resultadoscs.ViewPro.TableTheme<-Valores de propriedade do tema da tabela atual

Descrição

The VP Get table theme command returns the current theme propertie values of the tableName. A table theme can be set using the VP CREATE TABLE or VP SET TABLE THEME commands, or through the interface.

Em vpAreaName, passe o nome da área 4D View Pro e, em tableName, o nome da tabela.

The command returns an object of the cs.ViewPro.TableTheme class with properties and values that describe the current table theme.

Exemplo

The command returns a full theme object even if a native SpreadJS theme name was used to define the theme.

var $param : cs. ViewPro. TableTheme
$param:=cs. ViewPro. TableTheme.new()
$param.theme:="dark10" //use of a native theme name VP SET TABLE THEME("ViewProArea"; "ContextTable"; $param)
$vTheme:=VP Get table theme("ViewProArea"; "ContextTable")
$result:=Asserted(Value type($vTheme.theme)=Is object) //true

Veja também

VP CREATE TABLE
VP SET TABLE THEME