Desktop Functions: Smart Device Functions:
|
IsWindowVisible (user32)
C# Signature:
[DllImport("user32.dll")] VB.NET Signature:
<DllImport("user32.dll", SetLastError:=True)> _ VB.Signature
Public Declare Function IsWindowVisible Lib "user32" _ User-Defined Types:None. Notes:None. Tips & Tricks:Please add some! Sample Code:F# code on windows 7 [<System.Runtime.InteropServices.DllImport("user32.dll", CharSet=System.Runtime.InteropServices.CharSet.Auto)>] extern bool IsWindowVisible(System.IntPtr hwnd) Please add some! let intPointer = System.IntPtr(get some int 64 pointer) let isItShown = InteractiveNative.IsWindowVisible(intPointer) isItShown // Returns true or false. Alternative Managed API:The ManagedWindowsApi project (http://mwinapi.sourceforge.net) provides a class ManagedWinapi.SystemWindow that has a Visible property. Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|