ComponentFactory.Krypton.Toolkit.KryptonOffice2007Renderer.CreateClipBorderPath C# (CSharp) Метод

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

private CreateClipBorderPath ( Rectangle rect, Rectangle exclude, float cut ) : GraphicsPath
rect System.Drawing.Rectangle
exclude System.Drawing.Rectangle
cut float
Результат System.Drawing.Drawing2D.GraphicsPath
        private GraphicsPath CreateClipBorderPath(Rectangle rect,
                                                  Rectangle exclude,
                                                  float cut)
        {
            // Clipping happens inside the rect, so make 1 wider and taller
            rect.Width++;
            rect.Height++;

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

Same methods

KryptonOffice2007Renderer::CreateClipBorderPath ( Rectangle rect, float cut ) : GraphicsPath