SqlToolsVSNativeHelpers - FrameWindowVisible

적용 대상: SQL Server Azure SQL 데이터베이스

지정된 창 프레임이 표시되는지 여부를 지정하는 속성입니다. 도우미 메서드는 관리 코드에서 사용됩니다.

구문

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

매개 변수

frame

Visual Studio WindowFrame에 대한 IVsWindowFrame* 포인터입니다.

속성 값/반환 값

frame 으로 지정된 창 프레임이 표시되는지 여부를 지정하는 부울 값입니다.

관련 항목

SqlToolsVSNativeHelpers