@@ -48,7 +48,7 @@ The **Char** function translates a number into a string with the corresponding A
48
48
49
49
1 . Inside that gallery, add a ** Gallery** control with a ** Blank Vertical** layout, and then set these properties:
50
50
51
- - ** Items** : ` ForAll( [0,2,3,4,5,6,7,8,9,10,11,12,13,14,15], Value + ThisItem.Value * 16 ) `
51
+ - ** Items** : ` ForAll( [0,1, 2,3,4,5,6,7,8,9,10,11,12,13,14,15], Value + ThisItem.Value * 16 ) `
52
52
- ** Width** : 100
53
53
- ** Height** : 500
54
54
- ** TemplateSize** : 30
@@ -73,7 +73,7 @@ You've created a chart of the first 128 ASCII characters. Characters that appear
73
73
74
74
To show the extended ASCII characters, set the ** Items** property of the second gallery to this formula, which adds 128 to each character value:
75
75
76
- ` ForAll( [0,2,3,4,5,6,7,8,9,10,11,12,13,14,15], Value + ThisItem.Value * 16 + 128) `
76
+ ` ForAll( [0,1, 2,3,4,5,6,7,8,9,10,11,12,13,14,15], Value + ThisItem.Value * 16 + 128) `
77
77
78
78
![ Extended ASCII characters] ( media/function-char/chart-higher.png )
79
79
0 commit comments