[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Create an event type based on the original type passed in adding one or more properties.

Namespace: net.esper.events
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Function CreateAddToEventType ( _
	originalType As EventType, _
	fieldNames As String(), _
	fieldTypes As Type() _
) As EventType
C#
EventType CreateAddToEventType (
	EventType originalType,
	string[] fieldNames,
	Type[] fieldTypes
)
Visual C++
EventType^ CreateAddToEventType (
	EventType^ originalType, 
	array<String^>^ fieldNames, 
	array<Type^>^ fieldTypes
)

Parameters

originalType
net.esper.events.EventType
event type to add property to
fieldNames
System.String[]
names of properties
fieldTypes
System.Type[]
types of properties

Return Value

new event type