示例#1
0
 public static extern GpStatus GdipDrawString(
     GpGraphics graphics,
     string text,
     INT length,
     GpFont font,
     ref RectF layoutRect,
     GpStringFormat stringFormat,
     GpBrush brush
     );
示例#2
0
 StringFormatPlus(
      int formatFlags,
      int language
 )
 {
     nativeFormat = new GpStringFormat();
     lastError = NativeMethods.GdipCreateStringFormat(
         formatFlags,
         language,
         out nativeFormat
     );
 }
示例#3
0
文件: Others.cs 项目: misiek/foo
 public static extern GpStatus GdipDeleteStringFormat(GpStringFormat format);
示例#4
0
文件: Others.cs 项目: misiek/foo
        public static extern GpStatus GdipCreateStringFormat(
int formatAttributes,
int language,
out GpStringFormat format
);
示例#5
0
GdipAddPathStringI(GpPath path, string text,
                        int length, GpFontFamily family, int style,
                        float emSize, GpRect layoutRect,
                        GpStringFormat format);
示例#6
0
        StringFormatPlus(GpStringFormat clonedStringFormat, GpStatus status)
        {
            lastError = status;
            nativeFormat = clonedStringFormat;

        }
示例#7
0
 public static extern GpStatus GdipDeleteStringFormat(GpStringFormat format);
示例#8
0
 public static extern GpStatus GdipStringFormatGetGenericDefault(out GpStringFormat format);
示例#9
0
文件: Paths.cs 项目: misiek/foo
 public static extern GpStatus GdipAddPathString(GpPath path, string str,
                 int length, GpFontFamily family, int style,
                 float emSize, GpRectF layoutRect,
                 GpStringFormat format);