ComponentFactory.Krypton.Toolkit.RenderStandard.AllocatedTotalHeight C# (CSharp) Method

AllocatedTotalHeight() private static method

private static AllocatedTotalHeight ( Size allocation ) : int
allocation System.Drawing.Size
return int
        private static int AllocatedTotalHeight(Size[,] allocation)
        {
            int[] rowHeights = AllocatedRowHeights(allocation);
            return rowHeights[0] + rowHeights[1] + rowHeights[2];
        }
RenderStandard