| |
| Seeks an Article card by its alias. |
| |
 |
VARIANT_BOOL SeekByAlias ( enum eSeekMode eSeekMode, BSTR bsAlias ) |
|
| |
| Key information | | | | | Key segment information | | | | | Parameters | | eSeekMode | | [in] A value of the 'eSeekMode' enumeration. | | bsAlias | | [in] The alias of the Article you want to seek. | | | | Return value |
| True if the record with the given properties was found, otherwise false. |
| |
| See Also |
|
|
|
| |
| Samples |
| |
 |
C++ |
| |
// Seek the article with alias = 'ALIAS'
if (pArtcl->SeekByAlias (smEqual, "ALIAS"))
// Process record data
|
|
 |
C# |
| |
// Seek the article with alias = 'ALIAS'
if (oArtcl.SeekByAlias (eSeekMode.smEqual, "ALIAS"))
// Process record data
|
|
 |
VBS |
| |
' Seek the article with alias = 'ALIAS'
If oArtcl.SeekByAlias(smEqual, "ALIAS") Then
' Process record data
End If
|
|
 |
VB.NET |
| |
' Seek the article with alias = 'ALIAS'
If oArtcl.SeekByAlias(eSeekMode.smEqual, "ALIAS") Then
' Process record data
End If
|
|