We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3765913 commit 50c9996Copy full SHA for 50c9996
APLSource/Output/SaveToWs.aplf
@@ -1,5 +1,7 @@
1
SaveToWs←{
2
⍝ Callback function to store results into a variable
3
- grid←(##.GUI.GetParentForm⊃⍵).output.grid
4
- ⎕THIS.Result←⊃⍪/grid.(ColTitles Values)
+ t←⎕THIS
+ g←(##.GUI.GetParentForm⊃⍵).output.grid
5
+ t.Result←⊃⍪/g.(ColTitles Values)
6
+ ⎕←(⍕t),'.Result ⍝ saved with size ',⊃{(⍕⍺),'x',(⍕⍵)}/⍴Result
7
}
0 commit comments