|
Seeks a Sundry Document by synchronization reference. |
|
|
VARIANT_BOOL SeekBySyncReference ( enum eSeekMode eSeekMode, BSTR bsSyncReference ) |
|
|
Key information | | This method uses key number 6 (See SwapKey). | | This is a unique key. |
| | Key segment information | | | Parameters | eSeekMode | [in] A value of the 'eSeekMode' enumeration. | bsSyncReference | [in] The synchronization reference of the record. It allows an external application to identify and to find a record in Venice. The value must be blank or unique. No duplicate values are allowed. | | Return value |
True if the record with the given properties was found, otherwise false. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Seek the record with synchronization reference 'EXT14'
if (pSndry->SeekBySyncReference (smEqual, "EXT14"))
// Process record data
|
|
|
C# |
|
// Seek the record with synchronization reference 'EXT14'
if (oSndry.SeekBySyncReference (eSeekMode.smEqual, "EXT14"))
// Process record data
|
|
|
VBS |
|
' Seek the record with synchronization reference 'EXT14'
If oSndry.SeekBySyncReference(smEqual, "EXT14") Then
' Process record data
End If
|
|
|
VB.NET |
|
' Seek the record with synchronization reference 'EXT14'
If oSndry.SeekBySyncReference(eSeekMode.smEqual, "EXT14") Then
' Process record data
End If
|
|