【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。

2.2.4.22.11 Grid::FrozenCols

Contents

ClassName

Grid

AccessType

public

Name

FrozenCols

Declaration

int FrozenCols

Remark

Examples

EX1

void Grid_FrozenCols_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 columns. Cells in frozen columns can be selected and edited, but they remain visible when the user scrolls the contents horizontally. Frozen columns should correspond to our label columns (i.e. row labels).

Header to Include

origin.h

See Also

Grid::FrozenRows

Reference