SqlToolsVSNativeHelpers - FrameWindowVisibleSqlToolsVSNativeHelpers - FrameWindowVisible
适用于:Applies to: SQL ServerSQL Server(所有支持的版本)
SQL ServerSQL Server (all supported versions)
Azure SQL 数据库Azure SQL Database
Azure SQL 数据库Azure SQL Database
SQL ServerSQL Server(所有支持的版本)
SQL ServerSQL Server (all supported versions)
Azure SQL 数据库Azure SQL Database
Azure SQL 数据库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
frameframe
指向 Visual Studio WindowFrame 的 IVsWindowFrame* 指针。IVsWindowFrame* pointer to a Visual Studio WindowFrame.
属性值/返回值Property Value/Return Value
一个布尔值,该值指定由 frame 指定的窗口框架是否可见。A Boolean value that specifies whether the window frame specified by frame is visible.