IUIX_Combo::IsItemSeparator Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IUIX_Combo::IsItemSeparator Method}}
 
{{#customTitle:IUIX_Combo::IsItemSeparator Method}}
 +
{{#parentPage:PXV:IUIX_Combo#Methods|IsItemSeparator|method}}
  
The method of interface of PDF-XChange Editor SDK.
+
 
 +
Checks whether a required item is a [[PXV:UIX_ComboItemStyleFlags|separator]].
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT IsItemSeparator([in] LONG nItem, [out, retval] VARIANT_BOOL* pIsSeparator);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT IsItemSeparator([in]           LONG           nItem,
 +
                        [out, retval] VARIANT_BOOL* bIsSeparator);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''nItem''
+
;nItem
:[in]  Value of LONG.
+
:[in]  number of a required item.
;''pIsSeparator''
+
;bIsSeparator
:[out, retval]  Pointer to VARIANT_BOOL.
+
:[out, retval]  returns VARIANT_TRUE if an item is of separator type. Otherwise returns VARIANT_FALSE.
  
 
== Return Value ==
 
== Return Value ==
Returns S_OK if operation was successful or error code in other cases.
+
Returns S_OK if the operation was successful, or will return an error code if it fails.  
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_Combo|IUIX_Combo]].
+
[[PXV:IUIX_Combo|IUIX_Combo]]

Latest revision as of 14:17, 15 June 2015


Checks whether a required item is a separator.

Syntax

HRESULT IsItemSeparator([in]           LONG           nItem,
                        [out, retval]  VARIANT_BOOL*  bIsSeparator);

Parameters

nItem
[in] number of a required item.
bIsSeparator
[out, retval] returns VARIANT_TRUE if an item is of separator type. Otherwise returns VARIANT_FALSE.

Return Value

Returns S_OK if the operation was successful, or will return an error code if it fails.

See Also

IUIX_Combo