Share via


RunningDocumentTable.RenameDocument Method

Renames a document and optionally gives ownership of the document to the specified project.

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

Syntax

'Declaration
Public Sub RenameDocument ( _
    oldName As String, _
    newName As String, _
    pIVsHierarchy As IVsHierarchy, _
    itemId As UInteger _
)
public void RenameDocument(
    string oldName,
    string newName,
    IVsHierarchy pIVsHierarchy,
    uint itemId
)
public:
void RenameDocument(
    String^ oldName, 
    String^ newName, 
    IVsHierarchy^ pIVsHierarchy, 
    unsigned int itemId
)
member RenameDocument : 
        oldName:string * 
        newName:string * 
        pIVsHierarchy:IVsHierarchy * 
        itemId:uint32 -> unit
public function RenameDocument(
    oldName : String, 
    newName : String, 
    pIVsHierarchy : IVsHierarchy, 
    itemId : uint
)

Parameters

  • oldName
    Type: String

    [in] The full path representing the original name.

  • newName
    Type: String

    [in] The full path representing the new name.

Remarks

This method renames the document. In addition, the owner of the document can be set or changed by specifying the IVsHierarchy object representing the project that is to take ownership.

.NET Framework Security

See Also

Reference

RunningDocumentTable Class

Microsoft.VisualStudio.Shell Namespace