Sdílet prostřednictvím


IVsRelativePathResolver.ResolveRelativePath – metoda (UInt32, String, String)

 

Relativní cesta se překládá na absolutní cestu pro dokument.

Obor názvů:   Microsoft.VisualStudio.Shell.Interop
Sestavení:  Microsoft.VisualStudio.Shell.Interop (v Microsoft.VisualStudio.Shell.Interop.dll)

Syntaxe

int ResolveRelativePath(
    uint dwReserved,
    string pszRelPath,
    out string pbstrAbsPath
)
int ResolveRelativePath(
    unsigned int dwReserved,
    String^ pszRelPath,
    [OutAttribute] String^% pbstrAbsPath
)
abstract ResolveRelativePath : 
        dwReserved:uint32 *
        pszRelPath:string *
        pbstrAbsPath:string byref -> int
Function ResolveRelativePath (
    dwReserved As UInteger,
    pszRelPath As String,
    <OutAttribute> ByRef pbstrAbsPath As String
) As Integer

Parametry

  • dwReserved
    [v] Vyhrazeno pro budoucí použití.Musí být nula.
  • pszRelPath
    [v] Relativní cesta k dokumentu.
  • pbstrAbsPath
    [out retval] Absolutní cesta k dokumentu.

Vrácená hodnota

Type: System.Int32

Pokud metoda uspěje, vrací S_OK.Pokud se nezdaří, vrátí kód chyby.

Poznámky

Podpis COM

Z vsshell.idl:

HRESULT IVsRelativePathResolver::ResolveRelativePath(
   [in] DWORD dwReserved,
   [in] LPCOLESTR pszRelPath,
   [out, retval] BSTR *pbstrAbsPath
);

Viz také

IVsRelativePathResolver – rozhraní
Microsoft.VisualStudio.Shell.Interop – obor názvů

Zpátky na začátek