ComponentFactory.Krypton.Toolkit.KryptonOffice2013Renderer.CreateInsideBorderPath C# (CSharp) Метод

CreateInsideBorderPath() приватный Метод

private CreateInsideBorderPath ( Rectangle rect, Rectangle exclude, float cut ) : GraphicsPath
rect System.Drawing.Rectangle
exclude System.Drawing.Rectangle
cut float
Результат System.Drawing.Drawing2D.GraphicsPath
        private GraphicsPath CreateInsideBorderPath(Rectangle rect,
                                                    Rectangle exclude,
                                                    float cut)
        {
            // Adjust rectangle to be 1 pixel inside the original area
            rect.Inflate(-1, -1);

            // Now create a path based on this inner rectangle
            return CreateBorderPath(rect, exclude, cut);
        }

Same methods

KryptonOffice2013Renderer::CreateInsideBorderPath ( Rectangle rect, float cut ) : GraphicsPath