Hello all,
I need to check in a graph an Action Name exist so I loop through the actions but I am unable to get the Action name. Can someone help me out here?
for (int actionID = 0; actionID < Base.Actions.Count; actionID++)
{
string actionName = Base.Actions[actionID].ToString();
if (actionName == "MyButton")
{
//Do Stuff
}
}