FrameWindowVisible
SqlToolsVSNativeHelpers - Property that specifies whether a given window frame is visible. The helper method is used from managed
SqlToolsVSNativeHelpers -
Property that specifies whether a given window frame is visible. The helper method is used
from managed code.
frame
IVsWindowFrame* pointer to a Visual Studio WindowFrame.
A Boolean value that specifies whether the window frame specified by
frame
is visible.
SqlToolsVSNativeHelpers
BOOL WINAPI IsFrameWindowVisible(IVsWindowFrame* frame)
{
if (NULL == frame)
{
return FALSE;
}
return S_OK == frame->IsVisible();
}