Udostępnij za pośrednictwem


Właściwość ProjectItem.FileCount —

Pobiera liczbę pliki skojarzone z ProjectItem.

Przestrzeń nazw:  EnvDTE
Zestaw:  EnvDTE (w EnvDTE.dll)

Składnia

'Deklaracja
ReadOnly Property FileCount As Short
short FileCount { get; }
property short FileCount {
    short get ();
}
abstract FileCount : int16 with get
function get FileCount () : short

Wartość właściwości

Typ: Int16
Krótka liczba całkowita wskazująca liczbę pliki skojarzone z ProjectItem.

Uwagi

Większość elementów projektu składają się z tylko jeden plik, ale niektóre może mieć więcej niż jeden, podobnie jak w przypadku formularzy w Visual Basic który są zapisywane jako .frm (SMS) i pliki .frx (binarnych).

Przykłady

Sub FileCountExample(ByVal dte As DTE2)

    ' Before running this example, open a project.

    Dim proj As Project = dte.Solution.Projects.Item(1)
    Dim item As ProjectItem
    Dim items As String

    For Each item In proj.ProjectItems
        items &= "    " & item.Name & " (FileCount = " & _
            item.FileCount & ")" & vbCrLf
    Next

    MsgBox(proj.Name & " has the following project items:" & _
        vbCrLf & vbCrLf & items)

End Sub
public void FileCountExample(DTE2 dte)
{
    // Before running this example, open a project.

    Project proj = dte.Solution.Projects.Item(1);
    string items = "";

    foreach (ProjectItem item in proj.ProjectItems)
        items += "    " + item.Name + " (FileCount = " + 
            item.FileCount + ")\n";

    MessageBox.Show(proj.Name + 
        " has the following project items:\n\n" + items);
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

ProjectItem Interfejs

Przestrzeń nazw EnvDTE

Inne zasoby

Porady: kompilowanie i uruchamianie kodu modelu obiektów automatyzacji — przykłady