System.Windows.Forms.XplatUIX11.XSetLineAttributes C# (CSharp) Method

XSetLineAttributes() static private method

static private XSetLineAttributes ( IntPtr display, IntPtr gc, int line_width, GCLineStyle line_style, GCCapStyle cap_style, GCJoinStyle join_style ) : int
display IntPtr
gc IntPtr
line_width int
line_style GCLineStyle
cap_style GCCapStyle
join_style GCJoinStyle
return int
		internal static int XSetLineAttributes(IntPtr display, IntPtr gc, int line_width, GCLineStyle line_style, GCCapStyle cap_style, GCJoinStyle join_style) {
			DebugHelper.TraceWriteLine ("XSetLineAttributes");
			return _XSetLineAttributes(display, gc, line_width, line_style, cap_style, join_style);
		}
XplatUIX11