Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Provides the list of available extensions for the Save As dialog.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function GetFormatFilterList ( _
<OutAttribute> ByRef pbstrFilterList As String _
) As Integer
int GetFormatFilterList(
out string pbstrFilterList
)
int GetFormatFilterList(
[OutAttribute] String^% pbstrFilterList
)
abstract GetFormatFilterList :
pbstrFilterList:string byref -> int
function GetFormatFilterList(
pbstrFilterList : String
) : int
Parameters
- pbstrFilterList
Type: System.String%
[out]
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 textmgr.idl:
HRESULT IVsFormatFilterProvider::GetFormatFilterList(
[out] BSTR *pbstrFilterList
);
If no filter is provided, the default filter string is "All Files (*.*)\n*.*\nText Files (*.txt)\n*.txt\n" This filter list should not contain the All Files filer or Text Files. These will be added by the environment.
.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.