VSOBSEARCHCRITERIA Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies conditions and attributes of a search request.
public value class VSOBSEARCHCRITERIA
public value class VSOBSEARCHCRITERIA
struct VSOBSEARCHCRITERIA
public struct VSOBSEARCHCRITERIA
type VSOBSEARCHCRITERIA = struct
Public Structure VSOBSEARCHCRITERIA
- Inheritance
-
VSOBSEARCHCRITERIA
Examples
// If pobSrch has been set to the following values
VSOBSEARCHCRITERIA * pobSrch;
PobSrch->szName = "Train";
pobSrc->eSrchType = SO_SUBSTRING;
pobSrc->grfOptions = VSOBSO_CASESENSITIVE;
// and other parameters are
index = 2;
ListType = LLT_CLASSES;
Flags = LLF_USESEARCHFILTER;
//Then
CvsObjectList::GetList ( index, ListType, Flags, *pobSrch, **ppList);
//should return a list containing
// Train
// ToyTrain
// TrainingWheels
//but not
// train
// Strain
Remarks
The environment's object manager requests information from object lists with calls to GetList method. A VSOBSEARCHCRITERIA
parameter specifies the information that is being requested. Base the selection of information returned on these search parameters.
Fields
dwCustom |
DWORD containing custom information. |
eSrchType |
Specifies what part of an object's name is represented by |
grfOptions |
Specifies limits on the object search. Values are taken from the _VSOBSEARCHOPTIONS enumeration. |
szName |
String containing the name of the item to search for. |