VCLinkerTool.TypeLibraryResourceID 属性

定义

获取或设置一个值,该值指定要分配给已编译资源中的 .tlb 文件的 ID 号。

public:
 property int TypeLibraryResourceID { int get(); void set(int value); };
public:
 property int TypeLibraryResourceID { int get(); void set(int value); };
[System.Runtime.InteropServices.DispId(44)]
public int TypeLibraryResourceID { [System.Runtime.InteropServices.DispId(44)] get; [System.Runtime.InteropServices.DispId(44)] set; }
[<System.Runtime.InteropServices.DispId(44)>]
[<get: System.Runtime.InteropServices.DispId(44)>]
[<set: System.Runtime.InteropServices.DispId(44)>]
member this.TypeLibraryResourceID : int with get, set
Public Property TypeLibraryResourceID As Integer

属性值

Int32

分配给已编译资源中的 .tlb 文件的 ID 号。

属性

示例

下面的示例在 TypeLibraryResourceID 集成开发环境 (IDE) 中修改属性:

' add reference to Microsoft.VisualStudio.VCProjectEngine  
Imports EnvDTE  
Imports Microsoft.VisualStudio.VCProjectEngine  

Public Module Module1  
  Sub Test()  
    Dim prj As VCProject  
    Dim cfgs, tools As IVCCollection  
    Dim cfg As VCConfiguration  
    Dim tool As VCLinkerTool  
    prj = DTE.Solution.Projects.Item(1).Object  
    cfgs = prj.Configurations  
    cfg = cfgs.Item(1)  
    tool = cfg.Tools("VCLinkerTool")  
    tool.TypeLibraryResourceID = 2  
  End Sub  
End Module  

注解

TypeLibraryResourceID 公开 /TLBID (为 TypeLib 指定资源 ID) 链接器选项。

适用于