2.2.4.46.90 Worksheet::ShowRow

Description

Use this function to show/hide a row or multiple continuous rows.

Syntax

void ShowRow( int nRow, int nNumRows, BOOL bShow )

Parameters

nRow
[input] zero based index of the first row to show or hide
nNumRows
[input] number of rows to show or hide
bShow
[input] TRUE to show or FALSE to hide the rows

Return

No return value

Examples

EX1

void ShowRow_ex()
{
    Worksheet wks = Project.ActiveLayer();
    
    if (!wks)
    {
        wks.ShowRow(1, 1, false); // to hide row 1.
    }
}

Remark

See Also

ShowCol

Header to Included

origin.h