ClearFolderSearchFields method

This method allows the search fields for the active folder to be cleared.

Method
short ClearFolderSearchFields( )
Description
The search fields for the active folder are cleared.
Return Value
Refer to return codes.
Also see
OpenFolder, and SearchFolder methods.

C/C + +

 CArsOle * pArsCtrl;
 short rc;

   .
   .

  rc = pArsCtrl->ClearFolderSearchFields( );
  if ( rc != ARS_OLE_RC_SUCCESS )
    ERROR;

   .
   .

Visual Basic

Dim rc As Integer

 .
 .
 .

rc = ArsOle.ClearFolderSearchFields()
If rc <> ARS_OLE_RC_SUCCESS Then
   MsgBox "ERROR"
   End
End If

 .
 .
 .