| |
| Seeks a Contact-firm link card by its e-mail address. |
| |
 |
VARIANT_BOOL SeekByEmail ( enum eSeekMode eSeekMode, BSTR bsEmail ) |
|
| |
| Key information | | | | | Key segment information | | | | | 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 |
|
|
|
| |
| 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
|
|