SqlToolsVSNativeHelpers - FrameWindowVisible

Applies to: SQL Server Azure SQL Database

Property that specifies whether a given window frame is visible. The helper method is used from managed code.

Syntax

  
BOOL WINAPI IsFrameWindowVisible(IVsWindowFrame* frame)  
{  
    if (NULL == frame)  
    {  
        return FALSE;  
    }  
  
    return S_OK == frame->IsVisible();  
}  

Parameters

frame

IVsWindowFrame* pointer to a Visual Studio WindowFrame.

Property Value/Return Value

A Boolean value that specifies whether the window frame specified by frame is visible.

See Also

SqlToolsVSNativeHelpers