lrvtc_rotate_row
Retrieves the first row and moves the values to the bottom.
C Language
VTCERR2 lrvtc_rotate_row ( sendflag );
C# Language
void vts.rotate_row ( string sendflag );
Java Language
int Lrvtc.rotate_row ( int sendFlag );
Arguments
name | Comments |
---|---|
sendflag | Specify how the values are added back to bottom. One of:
|
lrvtc_rotate_row retrieves the data in the first row and stores them in parameters with the same name as the columns. The data is removed from the first row and moved to the bottom of the columns as specified by the sendFlag.
If there is no data in a cell, the output isNULL
.
Return Values
C Language: Returns zero on success or one of the Error Codes.
C# Language: No return value.
Java Language: Returns zero on success or one of the Error Codes.
Parameterization
All string input arguments can be passed using standard parameterization.
C Language Example
lrvtc_rotate_row(VTSEND_STACKED); lr_log_message(lr_eval_string("Country={Country},City={City}"));
C# Language Example
vts.rotate_row(LoadRunner.SendRow.Stacked);
Java Language Example
Lrvtc.rotate_row(Constants.VTSEND_STACKED);