SetDefaultFolderSearchFields method
The search fields for the active folder are set to their default values.
- Method
- short SetDefaultFolderSearchFields( )
- Description
- The search fields for the active folder are set to their default values.
- Return Value
- Refer to return codes.
- See Also
- OpenFolder, and SearchFolder method
C/C + +
The following example sets the search fields for the active folder to their default values. CArsOle * pArsCtrl;
short rc;
.
.
rc = pArsCtrl->SetDefaultFolderSearchFields( );
if ( rc != ARS_OLE_RC_SUCCESS )
ERROR;
.
.
Visual Basic
Dim rc As Integer
.
.
rc = ArsOle.SetDefaultFolderSearchFields ()
If rc <> ARS_OLE_RC_SUCCESS Then
MsgBox "ERROR"
End
End If
.
.