Esempio n. 1
0
 public static extern int SetStretchBltMode(IntPtr hdc, StretchingMode iStretchMode);
Esempio n. 2
0
 public static extern StretchingMode SetStretchBltMode([In] IntPtr hdc, StretchingMode mode);
Esempio n. 3
0
 public static extern StretchingMode SetStretchBltMode([In] IntPtr hdc, StretchingMode mode);
Esempio n. 4
0
 /// <summary>
 /// The SetStretchBltMode function sets the bitmap stretching mode in the specified device context
 /// </summary>
 /// <param name="hdc">Handle to the device context</param>
 /// <param name="mode">Specifies the stretching mode</param>
 /// <returns>If the function succeeds, the return value is the previous stretching mode</returns>
 public static StretchingMode SetStretchBltMode([In] IntPtr hdc, StretchingMode mode)
 {
     return(Native.SetStretchBltMode(hdc, mode));
 }
Esempio n. 5
0
 /// <summary>
 /// The SetStretchBltMode function sets the bitmap stretching mode in the specified device context
 /// </summary>
 /// <param name="hdc">Handle to the device context</param>
 /// <param name="mode">Specifies the stretching mode</param>
 /// <returns>If the function succeeds, the return value is the previous stretching mode</returns>
 public static StretchingMode SetStretchBltMode([In] IntPtr hdc, StretchingMode mode)
 {
     return Native.SetStretchBltMode(hdc, mode);
 }