IPXV_Control::GetPaneVisibility2 Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 9: | Line 9: | ||
== Syntax == | == Syntax == | ||
<pre class="brush:cpp;gutter:false">HRESULT GetPaneVisibility2([in] LONG nPaneID, | <pre class="brush:cpp;gutter:false">HRESULT GetPaneVisibility2([in] LONG nPaneID, | ||
− | [out, retval] LONG* | + | [out, retval] LONG* nVal);</pre> |
== Parameters == | == Parameters == | ||
;nPaneID | ;nPaneID | ||
:[in] The unique identifier of UI-pane. | :[in] The unique identifier of UI-pane. | ||
− | ; | + | ;nVal |
− | :[out, retval] | + | :[out, retval] Returns visibility state. The supported values: |
+ | ::<tt>1</tt> - is visible; | ||
+ | ::<tt>0</tt> - is invisible, because is overlapped by other panes; | ||
+ | ::<tt>-1</tt> - is hidden permanently; | ||
== Return Value == | == Return Value == |
Latest revision as of 02:50, 15 June 2015
Gets visibility state of UI-pane.
Syntax
HRESULT GetPaneVisibility2([in] LONG nPaneID, [out, retval] LONG* nVal);
Parameters
- nPaneID
- [in] The unique identifier of UI-pane.
- 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.