VCLinkerTool.FixedBaseAddress Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether an image must be loaded at a fixed address.
public:
property Microsoft::VisualStudio::VCProjectEngine::linkFixedBaseAddress FixedBaseAddress { Microsoft::VisualStudio::VCProjectEngine::linkFixedBaseAddress get(); void set(Microsoft::VisualStudio::VCProjectEngine::linkFixedBaseAddress value); };
public:
property Microsoft::VisualStudio::VCProjectEngine::linkFixedBaseAddress FixedBaseAddress { Microsoft::VisualStudio::VCProjectEngine::linkFixedBaseAddress get(); void set(Microsoft::VisualStudio::VCProjectEngine::linkFixedBaseAddress value); };
[System.Runtime.InteropServices.DispId(109)]
public Microsoft.VisualStudio.VCProjectEngine.linkFixedBaseAddress FixedBaseAddress { [System.Runtime.InteropServices.DispId(109)] get; [System.Runtime.InteropServices.DispId(109)] set; }
[<System.Runtime.InteropServices.DispId(109)>]
[<get: System.Runtime.InteropServices.DispId(109)>]
[<set: System.Runtime.InteropServices.DispId(109)>]
member this.FixedBaseAddress : Microsoft.VisualStudio.VCProjectEngine.linkFixedBaseAddress with get, set
Public Property FixedBaseAddress As linkFixedBaseAddress
Property Value
A linkFixedBaseAddress value.
- Attributes
Examples
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
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")
MsgBox("Fixed base address: " & tool.FixedBaseAddress.ToString)
End Sub
End Module
Remarks
FixedBaseAddress exposes the functionality of the /FIXED (Fixed Base Address) linker option.