GitUI.RevisionGrid.AdjustCellBounds C# (CSharp) 메소드

AdjustCellBounds() 개인적인 정적인 메소드

private static AdjustCellBounds ( Rectangle cellBounds, float offset ) : Rectangle
cellBounds System.Drawing.Rectangle
offset float
리턴 System.Drawing.Rectangle
        private static Rectangle AdjustCellBounds(Rectangle cellBounds, float offset)
        {
            return new Rectangle((int)(cellBounds.Left + offset), cellBounds.Top + 4,
                                 cellBounds.Width - (int)offset, cellBounds.Height);
        }
RevisionGrid