TempActiveRow

Framework library function. This function creates a temporary XLOPER containing a reference to an entire row on the active sheet.

Returns a reference LPXLOPER (xltypeRef) containing a reference to the row passed in.

Syntax

TempActiveRow(WORD rw);

rw (WORD)

The row of the cell. The argument is zero-based.

Example

The following example uses the TempActiveRow function to select an entire row.

\SAMPLES\EXAMPLE\EXAMPLE.C

short int WINAPI TempActiveRowExample(void)
{
    Excel4(xlcSelect, 0, 1, TempActiveRow(120));
    return 1;
}