Raised by the EvaluationContext when an object needs to be parsed from its string representation and the parser is either not able to parse it or not able to create an object of the respective type.
Namespace: MindFusion.Scripting
Assembly: MindFusion.Scripting
SyntaxC#
Copy Code
|
|---|
public event EventHandler<ParseObjectEventArgs> ParseObject |
Visual Basic
Copy Code
|
|---|
Public Event ParseObject As EventHandler(Of ParseObjectEventArgs) |
Event DataParseObject event handlers receive an argument of type EvaluateFunctionEventArgs.
RemarksA common case for this event to occur is when parsing a color object - where the actual platform-specific type is not known beforehand.
See Also