IUIX_Dialog::EnableLayer 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 EnableLayer([in]                    BSTR          pLayerName,
+
<pre class="brush:cpp;gutter:false">HRESULT EnableLayer([in]                    BSTR          sLayerName,
 
                     [in, defaultvalue(-1)]  VARIANT_BOOL  bEnable);</pre>
 
                     [in, defaultvalue(-1)]  VARIANT_BOOL  bEnable);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pLayerName
+
;sLayerName
 
:[in]  a name of a layer to enable/disable.
 
:[in]  a name of a layer to enable/disable.
 
;bEnable
 
;bEnable

Revision as of 04:18, 15 June 2015


Enables/disables all items of a required layer.

Syntax

HRESULT EnableLayer([in]                    BSTR          sLayerName,
                    [in, defaultvalue(-1)]  VARIANT_BOOL  bEnable);

Parameters

sLayerName
[in] a name of a layer to enable/disable.
bEnable
[in, defaultvalue(-1)] enables all layer items if this parameter is set to VARIANT_TRUE, or disables them if set to VARIANT_FALSE.

Return Value

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

See Also

IUIX_Dialog