CtLnk::SeekByEmail (Interface: CtLnk)
 
Seeks a Contact-firm link card by its e-mail address.
 
VARIANT_BOOL SeekByEmail (
    enum eSeekMode eSeekMode,
    BSTR bsEmail
)
 
Key information
This method uses key number 4 (See SwapKey).
This key allows duplicates.
 
Key segment information
Segment NameTypeOrderCollation
pEmailBSTRAscendingCase insensitive
 
Parameters
eSeekMode
[in] A value of the 'eSeekMode' enumeration.
bsEmail
[in] The e-mail address of the contact-firm link you want to seek.
 
Return value
True if the record with the given properties was found, otherwise false.
 
See Also
CreateCtLnk
 
Samples
 
C++
 
// Seek the contact-firm link with e-mail address = 'contact-firm@link.be'
if (pCtLnk->SeekByEmail (smEqual, "contact-firm@link.be"))
{
    // Process record data
}

C#
 
// Seek the contact-firm link with e-mail address = 'contact-firm@link.be'
if (oCtLnk.SeekByEmail (eSeekMode.smEqual, "contact-firm@link.be"))
{
    // Process record data
}

VBS
 
' Seek the contact-firm link with e-mail address = 'contact-firm@link.be'
If oCtLnk.SeekByEmail(smEqual, "contact-firm@link.be") Then
    ' Process record data
End If

VB.NET
 
' Seek the contact-firm link with e-mail address = 'contact-firm@link.be'
If oCtLnk.SeekByEmail(eSeekMode.smEqual, "contact-firm@link.be") Then
    ' Process record data
End If