You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The output will contain a value for each property marked as `input-output` or `bound` in the manifest.
27
27
For example, if the manifest has a property `value` that is an `input-output`, and you want to set that to the local variable `myvalue` you should return:
28
28
29
-
```javascript
29
+
```TypeScript
30
30
{
31
31
value: myvalue
32
32
}
33
33
```
34
34
35
35
## Example
36
36
37
-
```javascript
38
-
MyControl.prototype.getOutputs=function () {
39
-
var result ={
40
-
value:this._value
41
-
};
42
-
return result;
43
-
};
37
+
```TypeScript
38
+
publicgetOutputs(): IOutputs
39
+
{
40
+
return {
41
+
value: this._value
42
+
};
43
+
}
44
44
```
45
45
46
46
47
47
### Related topics
48
48
49
49
[Control](../control.md)<br/>
50
50
[Power Apps component framework API reference](../../reference/index.md)<br/>
0 commit comments