public bool DeleteOBJECT(IntPtr hObject) { return(GDI.DeleteObject(hObject)); }
public IntPtr CreatePEN(PenStyles fnPenStyle, int nWidth, int crColor) { return(GDI.CreatePen(fnPenStyle, nWidth, crColor)); }
public int SetROP2(drawingMode fnDrawMode) { return(GDI.SetROP2(this.hdc, fnDrawMode)); }
public void LineTo(int X, int Y) { GDI.LineTo(this.hdc, X, Y); }
public void MoveTo(int X, int Y) { GDI.MoveToEx(this.hdc, X, Y, 0); }
public IntPtr SelectObject(IntPtr hgdiobj) { return(GDI.SelectObject(this.hdc, hgdiobj)); }