In how many ways we can assign a value to local!variable?

I just want to know what are all the ways we can assign value to local!variables?

like, local!readonly: true, etc

Thanks,

Malleswari

  Discussion posts and replies are publicly visible

Parents
  • Can you clarify what you mean by "all the ways we can assign value to local variables"? I can think of three options:

    1. Explicitly declare the value in a load or with statement
    2. (load() only) Save a new value to the local variable by using a!save in a saveInto
    3. (with() only) Have the local variable re-evaluate due to an interaction with the interface
Reply
  • Can you clarify what you mean by "all the ways we can assign value to local variables"? I can think of three options:

    1. Explicitly declare the value in a load or with statement
    2. (load() only) Save a new value to the local variable by using a!save in a saveInto
    3. (with() only) Have the local variable re-evaluate due to an interaction with the interface
Children