Saltar para o conteúdo principal
Versão: 20 R9 BETA

VP Find table

História
ReleaseMudanças
18 R6Adicionado

VP Find table ( rangeObj : Object ) : Text

ParâmetroTipoDescrição
rangeObjObject->Intervalo de células
ResultadosText<-Nome da tabela

Descrição

O comando VP Find table retorna o nome da tabela ao qual a célula rangeObj pertence.

Em rangeObj, passar um objeto de intervalo de células. Se as células designadas não pertencerem a uma tabela, o comando retornará uma string vazia.

If rangeObj is not a cell range or contains multiple ranges, the first cell of the first range is used.

Exemplo

If (FORM Event.code=On After Edit && FORM Event.action="valueChanged")
$tableName:=VP Find table(FORM Event.range)
If ($tableName#"")
ALERT("The "+$tableName+" table has been modified.")
End if
End if

Veja também

VP Get table range