Filters files by localized name.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
声明
Function FilterListItemByLocalizedName ( _
    ByRef rguidProjectItemTemplates As Guid, _
    pszLocalizedName As String, _
    <OutAttribute> ByRef pfFilter As Integer _
) As Integer
用法
Dim instance As IVsFilterAddProjectItemDlg
Dim rguidProjectItemTemplates As Guid
Dim pszLocalizedName As String
Dim pfFilter As Integer
Dim returnValue As Integer
returnValue = instance.FilterListItemByLocalizedName(rguidProjectItemTemplates, _
    pszLocalizedName, pfFilter)
int FilterListItemByLocalizedName(
    ref Guid rguidProjectItemTemplates,
    string pszLocalizedName,
    out int pfFilter
)
int FilterListItemByLocalizedName(
    [InAttribute] Guid% rguidProjectItemTemplates, 
    [InAttribute] String^ pszLocalizedName, 
    [OutAttribute] int% pfFilter
)
abstract FilterListItemByLocalizedName : 
        rguidProjectItemTemplates:Guid byref * 
        pszLocalizedName:string * 
        pfFilter:int byref -> int 
function FilterListItemByLocalizedName(
    rguidProjectItemTemplates : Guid, 
    pszLocalizedName : String, 
    pfFilter : int
) : int
Parameters
- rguidProjectItemTemplates
Type: System.Guid%
[in] GUID of the project supplying the item templates. 
- pszLocalizedName
Type: System.String
[in] Pointer to a null terminated string containing the localized name. 
- pfFilter
Type: System.Int32%
[out] Set to true to filter out the specified item. Set to false to display the item. 
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsFilterAddProjectItemDlg::FilterListItemByLocalizedName(
   [in] REFGUID rguidProjectItemTemplates,
   [in] LPCOLESTR pszLocalizedName,
   [out] BOOL *pfFilter
);
The environment passes in a project GUID and an item name. Return false to display the item and true to filter the item.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
 
See Also
Reference
IVsFilterAddProjectItemDlg Interface