VCLinkerTool.OptimizeForWindows98 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 code on 4-KB boundaries. This improves performance on Windows 98 systems.
public:
property Microsoft::VisualStudio::VCProjectEngine::optWin98Type OptimizeForWindows98 { Microsoft::VisualStudio::VCProjectEngine::optWin98Type get(); void set(Microsoft::VisualStudio::VCProjectEngine::optWin98Type value); };
public:
property Microsoft::VisualStudio::VCProjectEngine::optWin98Type OptimizeForWindows98 { Microsoft::VisualStudio::VCProjectEngine::optWin98Type get(); void set(Microsoft::VisualStudio::VCProjectEngine::optWin98Type value); };
[System.Runtime.InteropServices.DispId(82)]
public Microsoft.VisualStudio.VCProjectEngine.optWin98Type OptimizeForWindows98 { [System.Runtime.InteropServices.DispId(82)] get; [System.Runtime.InteropServices.DispId(82)] set; }
[<System.Runtime.InteropServices.DispId(82)>]
[<get: System.Runtime.InteropServices.DispId(82)>]
[<set: System.Runtime.InteropServices.DispId(82)>]
member this.OptimizeForWindows98 : Microsoft.VisualStudio.VCProjectEngine.optWin98Type with get, set
Public Property OptimizeForWindows98 As optWin98Type
Property Value
An optWin98Type enumeration.
- Attributes
Examples
The following example modifies the OptimizeForWindows98 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.OptimizeForWindows98 = optWin98Type.optWin98Yes
End Sub
End Module
Remarks
OptimizeForWindows98 exposes the functionality of the /OPT (Optimizations) linker option.
Use the optWin98Type enumeration to change the value of this property.