System.Windows.Forms.ThemeWin32Classic.DrawBorderInternal C# (CSharp) Method

DrawBorderInternal() private static method

private static DrawBorderInternal ( Graphics graphics, int startX, int startY, int endX, int endY, int width, Color color, ButtonBorderStyle style, Border3DSide side ) : void
graphics System.Drawing.Graphics
startX int
startY int
endX int
endY int
width int
color System.Drawing.Color
style ButtonBorderStyle
side Border3DSide
return void
		private static void DrawBorderInternal (Graphics graphics, int startX, int startY, int endX, int endY,
			int width, Color color, ButtonBorderStyle style, Border3DSide side) 
		{
			DrawBorderInternal (graphics, (float) startX, (float) startY, (float) endX, (float) endY, 
				width, color, style, side);
		}

Same methods

ThemeWin32Classic::DrawBorderInternal ( Graphics graphics, float startX, float startY, float endX, float endY, int width, Color color, ButtonBorderStyle style, Border3DSide side ) : void
ThemeWin32Classic