VCFileCodeModel.AddInclude 方法
將 #include 項目加入至 VCFileCodeModel 物件中。
命名空間: Microsoft.VisualStudio.VCCodeModel
組件: Microsoft.VisualStudio.VCCodeModel (在 Microsoft.VisualStudio.VCCodeModel.dll 中)
語法
'宣告
Function AddInclude ( _
Name As String, _
Position As Object _
) As VCCodeInclude
VCCodeInclude AddInclude(
string Name,
Object Position
)
VCCodeInclude^ AddInclude(
String^ Name,
Object^ Position
)
abstract AddInclude :
Name:string *
Position:Object -> VCCodeInclude
function AddInclude(
Name : String,
Position : Object
) : VCCodeInclude
參數
- Name
型別:System.String
必要項。指定要包括之檔案的名稱 (以引號或角括弧括住)。
- Position
型別:System.Object
必要項。預設値 = 0。其後要加入新項目的程式碼項目。如果這個值是 CodeElement,則會緊接在其後加入新項目。
由於集合是從一開始計算,所以傳遞 0 就表示新的項目必須放在集合的開頭。值為 -1 時表示這個項目必須放在集合結尾的位置。
傳回值
型別:Microsoft.VisualStudio.VCCodeModel.VCCodeInclude
VCCodeInclude 物件。
備註
呼叫這個函式,以插入# include 指示詞 (C/C++)項目所代表的檔案輸入VCFileCodeModel物件。
如需這個範例的編譯與執行等詳細資訊,請參閱 HOW TO:編譯 Visual C++ 程式碼模型擴充性的範例程式碼。
範例
本範例新增#include陳述式所代表的檔案, vcFile物件。
Sub AddInclude()
Dim vcFile as VCFileCodeModel
vcFile = DTE.Solution.Item(1).ProjectItems.Item(1).FileCodeModel
vcFile.AddInclude("""stdafx.h""", 0)
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。