Desktop Functions: Smart Device Functions:
|
Search Results for "PenStyle" in [All]gdi321: CreatePen
static extern IntPtr CreatePen(PenStyle fnPenStyle, int nWidth, uint crColor);
Private Shared Function CreatePen(fnPenStyle As PenStyle, nWidth As Integer, crColor As UInteger) As IntPtr
IntPtr pen = CreatePen(PenStyle.PS_SOLID | PenStyle.PS_GEOMETRIC | PenStyle.PS_ENDCAP_ROUND, penWidth, (uint)ColorTranslator.ToWin32(penColor)); 2: ExtCreatePen
static extern IntPtr ExtCreatePen(uint dwPenStyle, uint dwWidth, 3: LineTo
IntPtr pen = CreatePen(PenStyle.PS_SOLID | PenStyle.PS_GEOMETRIC | PenStyle.PS_ENDCAP_ROUND, penWidth, (uint)ColorTranslator.ToWin32(penColor)); 4: MoveToEx
IntPtr pen = CreatePen(PenStyle.PS_SOLID | PenStyle.PS_GEOMETRIC | PenStyle.PS_ENDCAP_ROUND, penWidth, (uint)ColorTranslator.ToWin32(penColor)); 5: RoundRect
public static extern IntPtr CreatePen(int fnPenStyle, int nWidth, uint crColor); 6: SetMapMode
public static extern int CreatePen(int nPenStyle, int nWidth, int nColor); Enums7: PenStyle
|