IPXV_Control::ShowPane 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 ShowPane([in]                  BSTR          sPaneID,
+
<pre class="brush:cpp;gutter:false">HRESULT ShowPane([in]                  BSTR          PaneID,
                 [in]                  VARIANT_BOOL  bShow,
+
                 [in]                  VARIANT_BOOL  Show,
                 [in, defaultvalue(0)]  VARIANT_BOOL  bHighlightOnShow);</pre>
+
                 [in, defaultvalue(0)]  VARIANT_BOOL  HighlightOnShow);</pre>
  
 
== Parameters ==
 
== Parameters ==
;sPaneID
+
;PaneID
 
:[in]  The unique identifier of pane.
 
:[in]  The unique identifier of pane.
;bShow
+
;Show
 
:[in]  The flag to show/hide.
 
:[in]  The flag to show/hide.
;bHighlightOnShow
+
;HighlightOnShow
 
:[in, defaultvalue(0)]  The flag to highlight an visible pane.
 
:[in, defaultvalue(0)]  The flag to highlight an visible pane.
  

Revision as of 07:26, 12 June 2015


Shows/hides the UI-pane.

Syntax

HRESULT ShowPane([in]                   BSTR          PaneID,
                 [in]                   VARIANT_BOOL  Show,
                 [in, defaultvalue(0)]  VARIANT_BOOL  HighlightOnShow);

Parameters

PaneID
[in] The unique identifier of pane.
Show
[in] The flag to show/hide.
HighlightOnShow
[in, defaultvalue(0)] The flag to highlight an visible pane.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

IPXV_Control