共用方式為


VCFileCodeModel.AddIDLLibrary 方法

將新的 library 陳述式加入至 VCFileCodeModel 物件的 .idl 檔案。

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

語法

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

參數

  • Name
    型別:System.String
    必要項。指定新程式庫的名稱。
  • Position
    型別:System.Object
    選擇項。預設値 = 0。其後要加入新項目的程式碼項目。如果這個值是 CodeElement,則會緊接在其後加入新項目。
    由於集合是從一開始計算,所以傳遞 0 就表示新的項目必須放在集合的開頭。值為 -1 時表示這個項目必須放在集合結尾的位置。

傳回值

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

備註

呼叫這個函式,以插入library的 the.idl 檔案中的陳述式VCFileCodeModel物件。

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

範例

本範例將程式庫陳述式新增至.idl 檔的vcFile。

Sub AddIDLLibrary()
    Dim vcFile as VCFileCodeModel
    vcFile = DTE.Solution.Item(1).ProjectItems.Item(1).FileCodeModel
    vcFile.AddIDLLibrary("MyLibrary")
End Sub

.NET Framework 安全性

請參閱

參考

VCFileCodeModel 介面

Microsoft.VisualStudio.VCCodeModel 命名空間