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

        }
Esempio n. 7
0
 public static extern GpStatus GdipDeleteStringFormat(GpStringFormat format);
Esempio n. 8
0
 public static extern GpStatus GdipStringFormatGetGenericDefault(out GpStringFormat format);
Esempio n. 9
0
File: Paths.cs Progetto: misiek/foo
 public static extern GpStatus GdipAddPathString(GpPath path, string str,
                 int length, GpFontFamily family, int style,
                 float emSize, GpRectF layoutRect,
                 GpStringFormat format);