Desktop Functions: Smart Device Functions:
|
Search Results for "EnumChildWindows" in [All]user32
public static extern bool EnumChildWindows(IntPtr hwndParent, EnumWindowsProc lpEnumFunc, IntPtr lParam);
Private Shared Function EnumChildWindows(ByVal hWndParent As System.IntPtr, ByVal lpEnumFunc As EnumWindowsProc, ByVal lParam As Integer) As Boolean
public static extern bool EnumChildWindows(IntPtr window, EnumWindowProc callback, IntPtr i);
EnumChildWindows(parent, childProc, GCHandle.ToIntPtr(listHandle));
/// Delegate for the EnumChildWindows method
EnumChildWindows(windowHandle, callBackPtr, windowHandles);
private static extern bool EnumChildWindows(IntPtr window, EnumedWindow callback, ArrayList lParam);
Private Shared Function EnumChildWindows _
EnumChildWindows(ParentHandle, AddressOf EnumWindow, GCHandle.ToIntPtr(ListHandle))
//Returns the ID for a window given the handle for that window as returned by EnumChildWindows.
//Returns the ID for a window given the handle for that window as returned by EnumChildWindows. |