IVsUIShell2.GetDirectoryViaBrowseDlgEx Method

Brings up the Browse dialog box to obtain a directory name (possibly in a namespace extension).

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Syntax

'宣言
Function GetDirectoryViaBrowseDlgEx ( _
    <OutAttribute> pBrowse As VSBROWSEINFOW(), _
    pszHelpTopic As String, _
    pszOpenButtonLabel As String, _
    pszCeilingDir As String, _
    pNSEBrowseInfo As VSNSEBROWSEINFOW() _
) As Integer
'使用
Dim instance As IVsUIShell2
Dim pBrowse As VSBROWSEINFOW()
Dim pszHelpTopic As String
Dim pszOpenButtonLabel As String
Dim pszCeilingDir As String
Dim pNSEBrowseInfo As VSNSEBROWSEINFOW()
Dim returnValue As Integer

returnValue = instance.GetDirectoryViaBrowseDlgEx(pBrowse, _
    pszHelpTopic, pszOpenButtonLabel, _
    pszCeilingDir, pNSEBrowseInfo)
int GetDirectoryViaBrowseDlgEx(
    VSBROWSEINFOW[] pBrowse,
    string pszHelpTopic,
    string pszOpenButtonLabel,
    string pszCeilingDir,
    VSNSEBROWSEINFOW[] pNSEBrowseInfo
)
int GetDirectoryViaBrowseDlgEx(
    [InAttribute] [OutAttribute] array<VSBROWSEINFOW>^ pBrowse, 
    [InAttribute] String^ pszHelpTopic, 
    [InAttribute] String^ pszOpenButtonLabel, 
    [InAttribute] String^ pszCeilingDir, 
    [InAttribute] array<VSNSEBROWSEINFOW>^ pNSEBrowseInfo
)
function GetDirectoryViaBrowseDlgEx(
    pBrowse : VSBROWSEINFOW[], 
    pszHelpTopic : String, 
    pszOpenButtonLabel : String, 
    pszCeilingDir : String, 
    pNSEBrowseInfo : VSNSEBROWSEINFOW[]
) : int

Parameters

  • pBrowse
    Type: []

    [in, out] A VSBROWSEINFOW structure that contains information used to initialize the dialog box. When this method returns, this structure contains information about the directory location selected by the user. These values are defined in VSBROWSEINFOW structure.

  • pszHelpTopic
    Type: System.String

    [in] A string containing the help topic. This overrides the dwHelpTopic parameter in VSBROWSEINFOW structure.

  • pszOpenButtonLabel
    Type: System.String

    [in] Caption text for the Open button.

  • pNSEBrowseInfo
    Type: []

    [in] Optional. Namespace extension information .For a listing of the structure parameters, see the VSNSEBROWSEINFOW structure.

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 vsshell80.idl:

HRESULT IVsUIShell2::GetDirectoryViaBrowseDlgEx(
   [in,out] VSBROWSEINFOW     *pBrowse,
   [in]     LPCOLESTR          pszHelpTopic,
   [in]     LPCOLESTR          pszOpenButtonLabel,
   [in]     LPCOLESTR          pszCeilingDir,
   [in]     VSNSEBROWSEINFOW  *pNSEBrowseInfo
);

Permissions

See Also

Reference

IVsUIShell2 Interface

IVsUIShell2 Members

Microsoft.VisualStudio.Shell.Interop Namespace