IPXV_Control::GetPaneVisibility2 Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT GetPaneVisibility2([in]          LONG  PaneID,
+
<pre class="brush:cpp;gutter:false">HRESULT GetPaneVisibility2([in]          LONG  nPaneID,
                           [out, retval]  LONG*  Val);</pre>
+
                           [out, retval]  LONG*  nVal);</pre>
  
 
== Parameters ==
 
== Parameters ==
;PaneID
+
;nPaneID
 
:[in]  The unique identifier of UI-pane.
 
:[in]  The unique identifier of UI-pane.
;Val
+
;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;

Latest revision as of 03: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.

See Also

IPXV_Control