Name property
    GoForwardButton.Name — Text
  
The name, as assigned in Calcapp Creator.
Button names are normally assigned automatically by Calcapp Creator based on their labels, though a name can be provided manually as well.
Examples
Returns a comma-separated text string containing the names of all items of the app.
      FILTER(App.Items, STARTSWITH(App.Items.Name,
      "Button"))FILTER(App,Items; STARTSWITH(App,Items,Name;
      "Button"))
      
    
    Returns all items of the app whose names start with "Button".