IUIX_ListCallbacks::List_OnBeforeCheckItem Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 10: Line 10:
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">HRESULT List_OnBeforeCheckItem([in]      IUIX_List*      pList,
 
<pre class="brush:cpp;gutter:false">HRESULT List_OnBeforeCheckItem([in]      IUIX_List*      pList,
                               [in]      UIX_ListItemID*  pItemID,
+
                               [in]      UIX_ListItemID*  stItemID,
                               [in, out]  LONG*            pNewCheckState);</pre>
+
                               [in, out]  LONG*            nNewCheckState);</pre>
  
 
== Parameters ==
 
== Parameters ==
 
;pList
 
;pList
 
:[in]  Pointer to [[PXV:IUIX_List|IUIX_List]].
 
:[in]  Pointer to [[PXV:IUIX_List|IUIX_List]].
;pItemID
+
;stItemID
 
:[in]  Pointer to [[PXV:UIX_ListItemID|UIX_ListItemID]].
 
:[in]  Pointer to [[PXV:UIX_ListItemID|UIX_ListItemID]].
;pNewCheckState
+
;nNewCheckState
 
:[in, out]  Pointer to LONG.
 
:[in, out]  Pointer to LONG.
  

Latest revision as of 04:28, 15 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT List_OnBeforeCheckItem([in]       IUIX_List*       pList,
                               [in]       UIX_ListItemID*  stItemID,
                               [in, out]  LONG*            nNewCheckState);

Parameters

pList
[in] Pointer to IUIX_List.
stItemID
[in] Pointer to UIX_ListItemID.
nNewCheckState
[in, out] Pointer to LONG.

Return Value

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

See Also

IUIX_ListCallbacks