VP SET TIME VALUE
VP SET TIME VALUE ( rangeObj : Object ; timeValue : Text { ; formatPattern : Text } )
Parâmetro | Tipo | Descrição | ||
---|---|---|---|---|
rangeObj | Object | -> | Objeto intervalo | |
timeValue | Text | -> | Valor hora a definir | |
formatPattern | Text | -> | Formato do valor |
Descrição
The VP SET TIME VALUE
command assigns a specified time value to a designated cell range.
Em rangeObj, passe um intervalo de células (criado, por exemplo, com VP Cell
ou VP Column
) cujo valor você deseja especificar. If rangeObj includes multiple cells, the value specified will be repeated in each cell.
The timeValue parameter specifies a time expressed in seconds to be assigned to the rangeObj.
The optional formatPattern defines a pattern for the timeValue parameter.
Exemplo
//Set the value to the current time
VP SET TIME VALUE(VP Cell("ViewProArea";5;2);Current time)
//Set the value to a specific time with a designated format
VP SET TIME VALUE(VP Cell("ViewProArea";5;2);?12:15:06?;vk pattern long time)