Compartilhar via


Método ItemOperations.IsFileOpen

Indica se ou não o arquivo salvo especificado é aberto no modo de exibição especificado.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
Function IsFileOpen ( _
    FileName As String, _
    ViewKind As String _
) As Boolean
bool IsFileOpen(
    string FileName,
    string ViewKind
)
bool IsFileOpen(
    [InAttribute] String^ FileName, 
    [InAttribute] String^ ViewKind
)
abstract IsFileOpen : 
        FileName:string * 
        ViewKind:string -> bool
function IsFileOpen(
    FileName : String, 
    ViewKind : String
) : boolean

Parâmetros

  • FileName
    Tipo: String

    Obrigatório. O caminho absoluto para o arquivo salvo especificado. Se o arquivo acabou de ser criado, mas não salvo, em seguida, IsFileOpen retorna false.

  • ViewKind
    Tipo: String

    Opcional. A Constants.vsViewKind* constante que representa o tipo de exibição em que o arquivo salvo é aberto no momento.

Valor de retorno

Tipo: Boolean
Um valor booleano indicando true se o arquivo for aberto no modo de exibição especificado, false se não for.

Exemplos

Sub IsFileOpenExample()
    Dim soln As Solution = DTE.Solution
    Dim prj As Project
    Dim prjItem As ProjectItem
    Dim ItemOp As ItemOperations
    Dim savePath As String

    ' Create a new text document.
    ItemOp = DTE.ItemOperations
    ItemOp.NewFile("General\Text File", "Some name", _
    Constants.vsViewKindTextView)

    ' Set variables for proj and proj item names.
    prj = soln.Item(1)
    prjItem = prj.ProjectItems.Item(1)
    savePath = "C:\UserFiles\KempB\" & prjItem.Name
    MsgBox(savePath)

    If ItemOp.IsFileOpen(savePath) = True Then
        MsgBox("The saved document is open.")
    Else
        MsgBox("The saved document is not open.")
    End If

    prjItem.Save(savePath)
        
    If ItemOp.IsFileOpen(savePath) = True Then
        MsgBox("The saved document is open.")
    Else
        MsgBox("The saved document is not open.")
    End If
End Sub

Segurança do .NET Framework

Consulte também

Referência

ItemOperations Interface

Namespace EnvDTE