Beispiel #1
0
 internal static extern IntPtr GetCurrentObject(
     IntPtr hdc, // handle to DC
     GdiDcObject uObjectType // object type
     );
Beispiel #2
0
 internal static extern IntPtr GetCurrentObject(
     IntPtr hdc,             // handle to DC
     GdiDcObject uObjectType // object type
     );
 public static extern IntPtr GetCurrentObject(IntPtr hdc, GdiDcObject uObjectType);
 /// <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));
 }
Beispiel #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);
 }