Introduction
  • 23 Sep 2021
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

Introduction

  • Dark
    Light
  • PDF

Article Summary

Description

The script object contains context information for your script that you may want access to.

Think of this object as the context for your script when it runs.


Properties

Below is a list of properties supported by this object.

NameDescriptionUWPWebAvatars
argsA collection of inputs to the current script (when applicable)YesYesYes

Functions

Below is a list of functions supported by this object.

NameDescriptionUWPWebAvatars
---------------

Remarks

App scripts are typically triggered when some system event occurs. For example, when a user selection occurs within the visual layout of your app, you may want to take an action in your script.

To do so, create a script associated with the Ux.Change event. Then, when your script runs, you can use this script object to access the args (aka inputs or arguments) that the user actually changed and take an appropriate action.


What's Next