__VSFINDOPTIONS, énumération
Spécifie des options de recherche de texte.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Public Enumeration __VSFINDOPTIONS
public enum __VSFINDOPTIONS
public enum class __VSFINDOPTIONS
type __VSFINDOPTIONS
public enum __VSFINDOPTIONS
Membres
Nom de membre | Description | |
---|---|---|
FR_ActionMask | Actions.FR_MarkAll | FR_Find | FR_FindAll | FR_Replace | FR_ReplaceAll. | |
FR_All | Toutes les options. | |
FR_Backwards | Recherche vers l'arrière | |
FR_Block | Processus actuel/bloc | |
FR_BlockThread | ||
FR_Capabilities | FR_OptionSet | FR_SyntaxSet | FR_ActionMask | FR_SelectionDefault | |
FR_CommonOptions | FR_MatchCase | FR_WholeWord | FR_Hidden | FR_KeepCase | |
FR_DocOptionSet | FR_CommonOptions | FR_Backwards | FR_Selection | FR_Block | |
FR_Document | Document actuel de recherche | |
FR_FIFOptionSet | FR_CommonOptions | FR_SubFolders | FR_KeepOpen | FR_NameOnly | |
FR_Files | Recherche dans des fichiers. | |
FR_Find | Recherche suivante. | |
FR_FindAll | Recherchez tous (la recherche en bloc) | |
FR_FromStart | Recherche du début du doc. | |
FR_Hidden | Texte masqué de recherche. | |
FR_InternalMask | Options internes (sans interface utilisateur) FR_ResetPosition | FR_FromStart | FR_OneMatchPerLine | FR_Report | FR_SelectionDefault | |
FR_KeepCase | Conservez le cas sur pour remplacer. | |
FR_KeepOpen | Keep a modifié des fichiers ouverts. | |
FR_MarkAll | Marquez toutes les correspondances. | |
FR_MatchCase | Cas de correspondance dans la recherche. | |
FR_NameOnly | Affichez le nom de fichier uniquement. | |
FR_NoFind | Supprimez la recherche. | |
FR_None | Aucune option. | |
FR_OneMatchPerLine | Retournez une seule correspondance par ligne entassent (en bloc la recherche). | |
FR_OpenDocuments | Recherchez les documents ouverts. | |
FR_OptionMask | Options.FR_MatchCase | FR_WholeWord | FR_Hidden | FR_Backwards | FR_Selection | FR_Block | FR_KeepCase | FR_SubFolders | FR_KeepOpen | FR_NameOnly. | |
FR_OptionSet | FR_CommonOptions | FR_Backwards | FR_Selection | FR_Block | |
FR_Pattern | Mêmes que FR_Wildcard. | |
FR_Plain | Correspondez à la chaîne spécifique. | |
FR_Procedure | Mêmes que FR_Block. | |
FR_Project | Le recherchez dans le projet. | |
FR_RegExpr | Expressions régulières de correspondance. | |
FR_Replace | Remplacez le texte recherché. | |
FR_ReplaceAll | Remplacez tout le texte recherché. | |
FR_Report | Générez une liste des résultats. | |
FR_ResetPosition | Recherchez nouveau. | |
FR_Selection | Recherchez la sélection uniquement. | |
FR_SelectionDefault | GetCapabilities : sélection de force. | |
FR_Solution | Recherche en solution. | |
FR_SubFolders | Sous-dossiers de recherche. | |
FR_SyntaxMask | FR_Plane | FR_Wildcard | FR_RegExpr. | |
FR_SyntaxSet | FR_Plain | FR_Wildcard | FR_RegExpr | |
FR_TargetMask | FR_Document | FR_OpenDocuments | FR_Files | FR_Project | FR_Solution. | |
FR_WholeWord | Mot entier de correspondance. | |
FR_Wildcard | Caractères génériques de correspondance. |
Notes
Signature de COM
De textfind.idl :
enum __VSFINDOPTIONS {
FR_OptionMask = 0x00000FFF,
FR_MatchCase = 0x00000001,
FR_WholeWord = 0x00000002,
FR_Hidden = 0x00000004,
FR_Backwards = 0x00000008,
FR_Selection = 0x00000010,
FR_Block = 0x00000020,
FR_KeepCase = 0x00000040,
FR_SubFolders = 0x00000100,
FR_KeepOpen = 0x00000200,
FR_NameOnly = 0x00000400,
FR_SyntaxMask = 0x00003000,
FR_Plain = 0x00000000,
FR_Wildcard = 0x00001000,
FR_RegExpr = 0x00002000,
FR_TargetMask = 0x00070000,
FR_Document = 0x00010000,
FR_OpenDocuments = 0x00020000,
FR_Files = 0x00030000,
FR_Project = 0x00040000,
FR_Solution = 0x00050000,
FR_ActionMask = 0x00F80000,
FR_MarkAll = 0x00080000,
FR_Find = 0x00100000,
FR_FindAll = 0x00200000,
FR_Replace = 0x00400000,
FR_ReplaceAll = 0x00800000,
FR_InternalMask = 0x7F000000,
FR_ResetPosition = 0x01000000,
FR_FromStart = 0x02000000,
FR_OneMatchPerLine = 0x04000000,
FR_Report = 0x08000000,
FR_SelectionDefault = 0x10000000,
FR_NoFind = 0x80000000,
// Common options for all targets
FR_CommonOptions = (FR_MatchCase|FR_WholeWord|FR_Hidden|FR_KeepCase),
// Options for single documents
FR_DocOptionSet = (FR_CommonOptions|FR_Backwards|FR_Selection|FR_Block),
// Options for multifile targets
FR_FIFOptionSet = (FR_CommonOptions|FR_SubFolders|FR_KeepOpen|FR_NameOnly),
// Option bits for all targets
FR_OptionSet = (FR_DocOptionSet|FR_FIFOptionSet),
// Set of possible syntax options
FR_SyntaxSet = (FR_Plain|FR_Wildcard|FR_RegExpr),
FR_Capabilities = (FR_OptionSet|FR_SyntaxSet|FR_ActionMask|FR_SelectionDefault),
FR_All = 0x7FFFFFFF,
FR_None = 0x00000000,
// backward compatability aliases
FR_Procedure = FR_Block,
FR_Pattern = FR_Wildcard
};
typedef DWORD VSFINDOPTIONS;