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
SyntaxC#
Copy Code
|
|---|
public Object Result { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property Result As Object |
An object representing the function result.
RemarksFunctions 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.
See Also