Axiom.Components.Paging.Grid2DPageStrategyData.SetCellCount C# (CSharp) Method

SetCellCount() public method

Set the number of cells in the grid in each dimension (defaults to max of 65536)
public SetCellCount ( int horz, int vert ) : void
horz int
vert int
return void
        public void SetCellCount(int horz, int vert)
        {
            mGridExtentsHorz = horz;
            mGridExtentsVert = vert;
            UpdateDerivedMetrics();
        }