EventHandlers
Retrieve and modify project event handlers.
Table Specific Information
Insert
The following is an example of inserting into the EventHandlers table:
INSERT INTO EventHandlers ([Name], [Order], [Description], [ClassName], [AssemblyName]) VALUES ('TestEventHandler', 4, 'TestDescription', 'Namespace.YourCustomEventHandlerClass', 'YourCustomAssemblyName, Version=1.0.0.0, Culture=neutral, PublicKeyToken=abcdef1234567890');
Columns
| Name | Type | ReadOnly | References | Required | Description |
| Id [KEY] | String | False | False | ||
| AssemblyName | String | False | False | ||
| ClassName | String | False | False | ||
| Description | String | False | False | ||
| EndpointUrl | String | False | False | ||
| EventId | Int | False | False | ||
| Name | String | False | False | ||
| Order | Int | False | False | ||
| Event_Id | Int | True | False | ||
| LinkedEvent | String | False | False |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
| Name | Type | Description |
| InsertMode | String |
Determines the Insert Mode. Set to 'ADD' to use standard MSProject Add function. This is the default and is recommended. Set to 'ODATA' to use standard ODATA insert functionality. This input is only applicable during inserts. The value set in this input overrides the value set in the InsertMode connection property (see the documentation page for the InsertMode connection property for more information). |