Ejemplo n.º 1
0
 internal static extern IntPtr GetCurrentObject(
     IntPtr hdc, // handle to DC
     GdiDcObject uObjectType // object type
     );
Ejemplo n.º 2
0
 internal static extern IntPtr GetCurrentObject(
     IntPtr hdc,             // handle to DC
     GdiDcObject uObjectType // object type
     );
Ejemplo n.º 3
0
 public static extern IntPtr GetCurrentObject(IntPtr hdc, GdiDcObject uObjectType);
Ejemplo n.º 4
0
 /// <summary>
 ///     Gets a handle to an object of the specified type that has been
 ///     selected into this device context.
 /// </summary>
 public IntPtr GetCurrentObject(GdiDcObject objectType)
 {
     return(LibWrapper.GetCurrentObject(hDC, objectType));
 }
Ejemplo n.º 5
0
 /// <summary>
 ///     Gets a handle to an object of the specified type that has been 
 ///     selected into this device context. 
 /// </summary>
 public IntPtr GetCurrentObject(GdiDcObject objectType) {
     return LibWrapper.GetCurrentObject(hDC, objectType);
 }