Gets or sets the result of the function evaluation. An attempt to get the value of this property before it was set results in an exception.
Namespace: MindFusion.Scripting
Assembly: MindFusion.Scripting
C# Copy Code |
---|
public Object Result { get; set; } |
Visual Basic Copy Code |
---|
Public Property Result As Object |
An object representing the function result.
Functions always need to return values. If the event handler does not set Result, an exception will be thrown. null (Nothing in Visual Basic) is a valid return value.