Grid::FrozenRows

ClassName

Grid

AccessType

public

Name

FrozenRows

Declaration

int FrozenRows

Remark

Examples

EX1

void Grid_FrozenRows_ex1()
{
    Worksheet wks = Project.ActiveLayer();
    if(wks)
    {
        Grid gg;
        gg.Attach(wks);
        if(gg)
        {
            printf("Frozen Rows:%d, Frozen Cols:%d\n", gg.FrozenRows, gg.FrozenCols);
        }
    }
}

Description

[Read only] The number of frozen rows. Cells in frozen rows can be selected and edited, but they remain visible when the user scrolls the contents vertically. Frozen rows should correspond to our label rows (i.e. column labels).

Header to Include

origin.h

See Also

Grid::FrozenCols

Reference