Gets the number of elements in the multi-value event-out slot.
Declaring type: EventOutMField
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract int Size { get; }
Property Value
The number of elements.
Collapse/Expand Remarks
This is a read-only property.
Collapse/Expand Example
The following example demonstrates prints the number of nodes that are children of a "Group" node to the console:
C#
Vrml.EAI.Node group = browser.GetNode(...);
Vrml.EAI.Field.EventOutMFNode children = (Vrml.EAI.Field.EventOutMFNode)group.GetEventOut("children");
System.Console.WriteLine("Number of children = " + children.Size);