FunctionOrder Property
Visual Studio .NET 2003
Places COMDATs (functions) in the image in a predetermined order. Exposes the functionality of the /ORDER linker option.
[Visual Basic .NET]
Public Property FunctionOrder() As String
[Visual Basic 6]
Property Get FunctionOrder() As String Property Let FunctionOrder( _ ByVal NewValue As String _ )
[C++]
HRESULT __stdcall get_FunctionOrder( /* [out, retval] */ BSTR* retVal ); HRESULT __stdcall put_FunctionOrder( /* [in] */ BSTR NewValue );
[C#]
public string FunctionOrder {get; set;}
[JScript .NET]
public function get FunctionOrder() : String public function set FunctionOrder( NewValue : String )
Example
The following sample code modifies the FunctionOrder property in the development environment:
' 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.FunctionOrder = "c:\myfile.txt"
End Sub
End Module
See Samples for Project Model Extensibility for information on how to compile and run this sample.
See Also
Applies To: VCLinkerTool Object