QTP - Proprietà oggetto DTParameter
Nome metodo | Descrizione | Sintassi |
---|---|---|
Nome | Restituisce il nome del parametro nel datatable di runtime. | DTParameter.Name |
RawValue | Restituisce il valore grezzo della cella nella riga corrente del datatable di runtime. | DTParameter.RawValue |
Valore | Recupera o imposta il valore della cella nella riga Active del parametro nel datatable di runtime. | DTParameter.Value |
ValueByRow | Recupera il valore della cella nella riga specificata del parametro nel datatable di runtime. | DTParameter.ValueByRow (RowNum) |
Esempio
Considera il seguente DataTable:
Val = DataTable.GetSheet("Global").GetParameter("Principal").ValueByRow(2)
print Val ' Val Displays 2556
DataTable.SetCurrentRow(1)
Val1 = DataTable.GetSheet("Global").GetParameter("Principal").Value
print Val1 ' Val1 displays 232