IPXV_Control::GetPaneVisibility Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
Line 8: | Line 8: | ||
== Syntax == | == Syntax == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT GetPaneVisibility([in] BSTR | + | <pre class="brush:cpp;gutter:false">HRESULT GetPaneVisibility([in] BSTR sPaneID, |
− | [out, retval] LONG* | + | [out, retval] LONG* nVal);</pre> |
== Parameters == | == Parameters == | ||
− | ; | + | ;sPaneID |
:[in] The unique identifier of UI-pane. For example: | :[in] The unique identifier of UI-pane. For example: | ||
::<tt>searchView</tt> | ::<tt>searchView</tt> | ||
Line 21: | Line 21: | ||
::<tt>pageThumbnailsView</tt> | ::<tt>pageThumbnailsView</tt> | ||
::<tt>...</tt> | ::<tt>...</tt> | ||
− | ; | + | ;nVal |
:[out, retval] Returns visibility state. The supported values: | :[out, retval] Returns visibility state. The supported values: | ||
::<tt>1</tt> - is visible; | ::<tt>1</tt> - is visible; |
Revision as of 01:35, 4 June 2015
Gets visibility state of UI-pane.
Syntax
HRESULT GetPaneVisibility([in] BSTR sPaneID, [out, retval] LONG* nVal);
Parameters
- sPaneID
- [in] The unique identifier of UI-pane. For example:
- searchView
- loupeView
- searchView
- pagesView
- bookmarksView
- pageThumbnailsView
- ...
- nVal
- [out, retval] Returns visibility state. The supported values:
- 1 - is visible;
- 0 - is invisible, because is overlapped by other panes;
- -1 - is hidden permanently;
Return Value
Returns S_OK if operation was successful or error code in other cases.