VCLinkerTool.HeapCommitSize Property

Definition

Gets or sets a value specifying total heap allocation size in physical memory.

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

Property Value

A value specifying total heap allocation size in physical memory.

Attributes

Examples

The following example modifies the HeapCommitSize property in the integrated development environment (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.HeapCommitSize = 4096  
  End Sub  
End Module  

Remarks

HeapCommitSize exposes the functionality of the /HEAP (Set Heap Size) linker option.

Applies to