Package com.esri.arcgisruntime.arcade
Class ArcadeConsoleMessageEvent
- java.lang.Object
-
- com.esri.arcgisruntime.arcade.ArcadeConsoleMessageEvent
-
public final class ArcadeConsoleMessageEvent extends Object
Represents the result of evaluating an Arcade console message, which appeared in an Arcade script.This event is fired when an Arcade Console Function is part of an Arcade script expression. The Arcade Console function can be used to send information like variable values at different places within an Arcade script. Use this event to view messages from an Arcade script evaluation.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArcadeConsoleMessageContext
getContext()
Gets the context.String
getMessage()
Gets the message.
-
-
-
Method Detail
-
getContext
public ArcadeConsoleMessageContext getContext()
Gets the context.- Returns:
- the context
- Since:
- 100.14.0
-
getMessage
public String getMessage()
Gets the message.- Returns:
- the message
- Since:
- 100.14.0
-
-