[This is preliminary documentation and is subject to change.]
| C# | Visual Basic | Visual C++ |
public abstract class Setup
Public MustInherit Class Setup
public ref class Setup abstract
| All Members | Constructors | Methods | |||
| Icon | Member | Description |
|---|---|---|
| Setup()()() | Initializes a new instance of the Setup class | |
| Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) | |
| Finalize()()() | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode()()() | Serves as a hash function for a particular type. GetHashCode()()() is suitable for use in hashing algorithms and data structures like a hash table. (Inherited from Object.) | |
| GetType()()() | Gets the Type of the current instance. (Inherited from Object.) | |
| Initialize()()() |
Initialize the component before use.
| |
| MemberwiseClone()()() | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| Terminate()()() |
Terminate the component after use.
| |
| ToString()()() | Returns a String that represents the current Object. (Inherited from Object.) |
Managed Extensions for C++ Reference
Converting Managed Extensions for C++ Projects from Pure Intermediate Language to Mixed Mode
See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmex/html/vcconconvertingmanagedextensionsforcprojectsfrompureintermediatelanguagetomixedmode.asp
This is done because linking with an entry point causes managed code to run during DllMain, which is not safe (see DllMain for the limited set of things you can do during its scope).
WARNING: Be sure to only call Initialize once. When you make use of scripting within the DVT GUI application, the initialization will be performed the the DVT GUI application. The scripts do NOT need to initialize the DVTK in that case. Therefore, avoid the calls Initialize and Terminate in your scripts!
GUIDELINE: Only introduce the these calls in a Main routine.
| Object | |
| Setup | |