IUIX_Dialog::EnableItem 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 EnableItem([in]  BSTR          pItemID,
+
<pre class="brush:cpp;gutter:false">HRESULT EnableItem([in]  BSTR          sItemID,
 
                   [in]  VARIANT_BOOL  bEnable);</pre>
 
                   [in]  VARIANT_BOOL  bEnable);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pItemID
+
;sItemID
 
:[in]  text ID of an item to be enabled/disabled.
 
:[in]  text ID of an item to be enabled/disabled.
 
;bEnable
 
;bEnable

Revision as of 04:18, 15 June 2015


Enables/disables an item in a dialog by item's text ID.

Syntax

HRESULT EnableItem([in]  BSTR          sItemID,
                   [in]  VARIANT_BOOL  bEnable);

Parameters

sItemID
[in] text ID of an item to be enabled/disabled.
bEnable
[in] enables required item if this parameter is set to VARIANT_TRUE, or disables it if set to VARIANT_FALSE.

Return Value

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

See Also

IUIX_Dialog