System.Win.ComServ.TStartMode
Delphi
TStartMode = (smStandalone, smAutomation, smRegServer, smUnregServer);
C++
enum DECLSPEC_DENUM TStartMode : unsigned char { smStandalone, smAutomation, smRegServer, smUnregServer };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | System.Win.ComServ.pas System.Win.ComServ.hpp |
System.Win.ComServ | System.Win.ComServ |
Description
Start mode that indicates how or why an application started.
Possible values are:
| Start mode | Meaning |
|---|---|
| smAutomation | The application was started by Windows in response to a request from an automation controller. |
| smRegServer | The application was started only to add the server to the system registry. |
| smStandalone | The user started the application as a stand-alone, interactive application. |
| smUnregServer | The application was started only to remove the server from the system registry. |