本文整理汇总了C#中GpPen类的典型用法代码示例。如果您正苦于以下问题:C# GpPen类的具体用法?C# GpPen怎么用?C# GpPen使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GpPen类属于命名空间,在下文中一共展示了GpPen类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GdipGetPathWorldBoundsI
GdipGetPathWorldBoundsI(GpPath path, GpRect[] bounds,
out GpMatrix matrix, out GpPen pen);
示例2: GdipScalePenTransform
public static extern GpStatus GdipScalePenTransform(GpPen pen, float sx, float sy,
MatrixOrder order);
示例3: GdipResetPenTransform
public static extern GpStatus GdipResetPenTransform(GpPen pen);
示例4: GdipGetPenWidth
public static extern GpStatus GdipGetPenWidth(GpPen pen, out float width);
示例5: GdipGetPenTransform
public static extern GpStatus GdipGetPenTransform(GpPen pen, out GpMatrix matrix);
示例6: GdipGetPenMode
public static extern GpStatus GdipGetPenMode(GpPen pen, out PenAlignment penMode);
示例7: GdipGetPenCustomStartCap
public static extern GpStatus GdipGetPenCustomStartCap(GpPen pen, out GpCustomLineCap customCap);
示例8: GdipGetPenCompoundCount
public static extern GpStatus GdipGetPenCompoundCount(GpPen pen, out int count);
示例9: GdipGetPenColor
public static extern GpStatus GdipGetPenColor(GpPen pen, out int argb);
示例10: GdipGetPenBrushFill
public static extern GpStatus GdipGetPenBrushFill(GpPen pen, out GpBrush brush);
示例11: GdipDeletePen
public static extern GpStatus GdipDeletePen(GpPen pen);
示例12: GdipCreatePen2
public static extern GpStatus GdipCreatePen2(GpBrush brush, float width, Unit unit,
out GpPen pen);
示例13: GdipTranslatePenTransform
public static extern GpStatus GdipTranslatePenTransform(GpPen pen, float dx, float dy,
MatrixOrder order);
示例14: GdipGetPenLineJoin
public static extern GpStatus GdipGetPenLineJoin(GpPen pen, out LineJoin lineJoin);
示例15: GdipGetPenMiterLimit
public static extern GpStatus GdipGetPenMiterLimit(GpPen pen, out float miterLimit);