Grid::FixedRows

ClassName

Grid

AccessType

public

Name

FixedRows

Declaration

int FixedRows

Remark

Doesn't support this property any more, please use FrozenRows instead.

Examples

EX1

void Grid_FixedRows_ex1()
{
    Worksheet wks = Project.ActiveLayer();
    if(wks)
    {
        Grid gg;
        gg.Attach(wks);
        if(gg)
        {
            printf("Fixed Rows:%d, Fixed Cols:%d\n", gg.FixedRows, gg.FixedCols);
        }
    }
}

Description

The number of fixed rows. Fixed rows remain visible when the user scrolls the contents of the grid. They should correspond to our header rows in worksheet.

Header to Include

origin.h

See Also

Grid::FixedCols

Reference