共用方式為


VCCodeModel.AddInclude 方法

#include 項目加入至特定檔案。

命名空間:  Microsoft.VisualStudio.VCCodeModel
組件:  Microsoft.VisualStudio.VCCodeModel (在 Microsoft.VisualStudio.VCCodeModel.dll 中)

語法

'宣告
Function AddInclude ( _
    Name As String, _
    Location As Object, _
    Position As Object _
) As VCCodeInclude
VCCodeInclude AddInclude(
    string Name,
    Object Location,
    Object Position
)
VCCodeInclude^ AddInclude(
    String^ Name, 
    Object^ Location, 
    Object^ Position
)
abstract AddInclude : 
        Name:string * 
        Location:Object * 
        Position:Object -> VCCodeInclude 
function AddInclude(
    Name : String, 
    Location : Object, 
    Position : Object
) : VCCodeInclude

參數

  • Name
    型別:System.String
    必要項。指定要包括之檔案的名稱 (以引號或角括弧括住)。
  • Location
    型別:System.Object
    必要項。要修改之檔案的路徑或檔名。如果此檔案不存在,則會自動建立此檔案。如果這個檔案目前不是專案項目,將會將它加入到專案中。如果無法建立這個檔案並加入至專案,則 AddInclude 將會失敗。
  • Position
    型別:System.Object
    必要項。預設値 = 0。其後要加入新項目的程式碼項目。如果這個值是 CodeElement,則會緊接在其後加入新項目。
    由於集合是從一開始計算,所以傳遞 0 就表示新的項目必須放在集合的開頭。值為 -1 時表示這個項目必須放在集合結尾的位置。

傳回值

型別:Microsoft.VisualStudio.VCCodeModel.VCCodeInclude
VCCodeInclude 物件。

備註

呼叫這個函式,以插入# include 指示詞 (C/C++)將項目指定的檔案的VCCodeModel物件。

如需這個範例的編譯與執行等詳細資訊,請參閱 HOW TO:編譯 Visual C++ 程式碼模型擴充性的範例程式碼

範例

本範例新增**#include** stdafx.h 檔案的陳述式。

Sub AddInclude()
    Dim codeModel As VCCodeModel
    codeModel = DTE.Solution.Item(1).CodeModel
    Dim include As VCCodeInclude
    include = codeModel.AddInclude("""stdafx.h""", "File.h", 0)
End Sub

.NET Framework 安全性

請參閱

參考

VCCodeModel 介面

Microsoft.VisualStudio.VCCodeModel 命名空間