Partager via


IVsPersistDocData2.SetUntitledDocPath Method

Sets the initial name (or path) for unsaved, newly created document data.

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

Syntax

'Déclaration
Function SetUntitledDocPath ( _
    pszDocDataPath As String _
) As Integer
'Utilisation
Dim instance As IVsPersistDocData2
Dim pszDocDataPath As String
Dim returnValue As Integer

returnValue = instance.SetUntitledDocPath(pszDocDataPath)
int SetUntitledDocPath(
    string pszDocDataPath
)
int SetUntitledDocPath(
    [InAttribute] String^ pszDocDataPath
)
function SetUntitledDocPath(
    pszDocDataPath : String
) : int

Parameters

  • pszDocDataPath
    Type: System.String

    [in] String indicating the path of the document. Most editors can ignore this parameter. It exists for historical reasons.

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Implements

IVsPersistDocData.SetUntitledDocPath(String)

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsPersistDocData2::SetUntitledDocPath(
   [in] LPCOLESTR pszDocDataPath
);

SetUntitledDocPath is called by all projects after a new document instance is created.

Editors use the same CreateInstance/InitNew design pattern of standard COM objects.

Editors can use this method to perform one-time initializations that are required after a new document instance was created through a call to CreateEditorInstance with a parameter of CEF_CLONEFILE.

Permissions

See Also

Reference

IVsPersistDocData2 Interface

IVsPersistDocData2 Members

Microsoft.VisualStudio.Shell.Interop Namespace