Axiom.Components.Paging.Grid2DPageStrategyData.SetCellCount C# (CSharp) 메소드

SetCellCount() 공개 메소드

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
리턴 void
        public void SetCellCount(int horz, int vert)
        {
            mGridExtentsHorz = horz;
            mGridExtentsVert = vert;
            UpdateDerivedMetrics();
        }