IVsUIShell2.GetSaveFileNameViaDlgEx Method

Brings up the Save As dialog box to obtain a save file name.

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

Syntax

'Declaration
Function GetSaveFileNameViaDlgEx ( _
    <OutAttribute> pSaveFileName As VSSAVEFILENAMEW(), _
    pszHelpTopic As String _
) As Integer
int GetSaveFileNameViaDlgEx(
    VSSAVEFILENAMEW[] pSaveFileName,
    string pszHelpTopic
)
int GetSaveFileNameViaDlgEx(
    [InAttribute] [OutAttribute] array<VSSAVEFILENAMEW>^ pSaveFileName, 
    [InAttribute] String^ pszHelpTopic
)
abstract GetSaveFileNameViaDlgEx : 
        pSaveFileName:VSSAVEFILENAMEW[] byref * 
        pszHelpTopic:string -> int
function GetSaveFileNameViaDlgEx(
    pSaveFileName : VSSAVEFILENAMEW[], 
    pszHelpTopic : String
) : int

Parameters

  • pszHelpTopic
    Type: String

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

Return Value

Type: 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::GetSaveFileNameViaDlgEx(
   [in,out] VSSAVEFILENAMEW *pSaveFileName,
   [in]     LPCOLESTR        pszHelpTopic
);

.NET Framework Security

See Also

Reference

IVsUIShell2 Interface

Microsoft.VisualStudio.Shell.Interop Namespace