replaceText
Replaces a text with the current values of the app.
- 1.text - the text with parameters
- 2.additionalReplacings - json object with key value pairs
This example uses the controls of the app to replace the values.
let newText = brixxApi.replaceText("Hello @id");
This example uses the controls of the app to replace the values.
let newText = brixxApi.replaceText("Hello @myCustomParam", {
myCustomParam: "world"
});
Last modified 1yr ago