VP SET ROW ATTRIBUTES
VP SET ROW ATTRIBUTES ( rangeObj : Object ; propertyObj : Object )
Parâmetro | Tipo | Descrição | ||
---|---|---|---|---|
rangeObj | Object | -> | Intervalo de linhas | |
propertyObj | Object | -> | Objeto que contém as propriedades da linhas |
Descrição
The VP SET ROW ATTRIBUTES
command applies the attributes defined in the propertyObj to the rows in the rangeObj.
In the rangeObj, pass an object containing a range. Se o intervalo contiver colunas e linhas, os atributos são aplicados apenas às linhas.
The propertyObj parameter lets you specify the attributes to apply to the rows in the rangeObj. Estes atributos são:
Propriedade | Tipo | Descrição |
---|---|---|
height | number | Altura da linha expressa em píxeis |
pageBreak | boolean | True para inserir uma quebra de página antes da primeira linha do intervalo, senão false |
visible | boolean | True se a linha for visível, senão false |
resizable | boolean | True se a linha puder ser redimensionada, senão false |
header | text | Texto do cabeçalho da linha |
Exemplo
Pretende-se alterar o tamanho da segunda linha e definir o cabeçalho:
var $row; $properties : Object
$row:=VP Row("ViewProArea";1)
$properties:=New object("height";75;"header";"June")
VP SET ROW ATTRIBUTES($row;$properties)
Veja também
VP Get row attributes
VP get column attributes
VP SET ROW ATTRIBUTES