public FluentConfiguration <TModel> HasFreeze(int columnSplit, int rowSplit, int leftMostColumn, int topMostRow)
        {
            var freeze = new FreezeConfig
            {
                ColSplit       = columnSplit,
                RowSplit       = rowSplit,
                LeftMostColumn = leftMostColumn,
                TopRow         = topMostRow,
            };

            _freezeConfigs.Add(freeze);

            return(this);
        }
Пример #2
0
 public FreezeAttribute()
 {
     FreezeConfig = new FreezeConfig();
 }