Sdílet prostřednictvím


IVsUIShellOpenDocument.GetFirstDefaultPreviewer – metoda (String, Int32, Int32)

 

Vrátí cestu k souboru exe ve výchozím webovém prohlížeči.

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

Syntaxe

int GetFirstDefaultPreviewer(
    out string pbstrDefBrowserPath,
    out int pfIsInternalBrowser,
    out int pfIsSystemBrowser
)
int GetFirstDefaultPreviewer(
    [OutAttribute] String^% pbstrDefBrowserPath,
    [OutAttribute] int% pfIsInternalBrowser,
    [OutAttribute] int% pfIsSystemBrowser
)
abstract GetFirstDefaultPreviewer : 
        pbstrDefBrowserPath:string byref *
        pfIsInternalBrowser:int byref *
        pfIsSystemBrowser:int byref -> int
Function GetFirstDefaultPreviewer (
    <OutAttribute> ByRef pbstrDefBrowserPath As String,
    <OutAttribute> ByRef pfIsInternalBrowser As Integer,
    <OutAttribute> ByRef pfIsSystemBrowser As Integer
) As Integer

Parametry

  • pbstrDefBrowserPath
    [výstup] Ukazatel na úplnou cestu k výchozí prohlížeč.
  • pfIsInternalBrowser
    [výstup] true -li interní výchozí prohlížeč.
  • pfIsSystemBrowser
    [výstup] true -li prohlížeč systémové výchozí prohlížeč.

Vrácená hodnota

Type: System.Int32

Vrátí S_OK -li definována výchozí náhledu.Vrátí S_FALSE Pokud neexistují žádné výchozí prohlížeče.

Poznámky

Podpis COM

Z vsshell.idl:

HRESULT IVsUIShellOpenDocument::GetFirstDefaultPreviewer(
   [out] BSTR *pbstrDefBrowserPath,
   [out] BOOL *pfIsInternalBrowser,
   [out] BOOL *pfIsSystemBrowser
);

Tato metoda vrátí tentýž prohlížeč, který by byl spuštěn, pokud OSP_LaunchSingleBrowser byly předány OpenStandardPreviewer.Pokud je interní prohlížeč pbstrDefBrowserPath je null, *pfIsInternalBrowser je true, a vrátí funkce S_OK.

Viz také

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

Zpátky na začátek