FrameWindowVisible

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

구문

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

    return S_OK == frame->IsVisible();
}

매개 변수

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.

참고 항목

참조