|
WindowHelperIsWindowVisible Method |
Namespace: Xcalibur.NativeMethods.V2.WindowsAssembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntax [DllImportAttribute("user32.dll")]
public static bool IsWindowVisible(
IntPtr windowHandle
)
<DllImportAttribute("user32.dll">]
Public Shared Function IsWindowVisible (
windowHandle As IntPtr
) As Boolean
public:
[DllImportAttribute(L"user32.dll")]
static bool IsWindowVisible(
IntPtr windowHandle
)
[<DllImportAttribute("user32.dll")>]
static member IsWindowVisible :
windowHandle : IntPtr -> bool
Parameters
- windowHandle IntPtr
- A handle to the window to be tested.
Return Value
BooleanIf the specified window, its parent window, its parent's parent window, and so
forth, have the WS_VISIBLE style, the return value is nonzero. Otherwise, the return value
is zero.
See Also