-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxrefmap.yml
1162 lines (1162 loc) · 54.3 KB
/
xrefmap.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### YamlMime:XRefMap
sorted: true
references:
- uid: ASE_Assignment
name: ASE_Assignment
href: api/ASE_Assignment.html
commentId: N:ASE_Assignment
fullName: ASE_Assignment
nameWithType: ASE_Assignment
- uid: ASE_Assignment.AppArray
name: AppArray
href: api/ASE_Assignment.AppArray.html
commentId: T:ASE_Assignment.AppArray
fullName: ASE_Assignment.AppArray
nameWithType: AppArray
- uid: ASE_Assignment.AppArray.CheckParameters(System.String[])
name: CheckParameters(string[])
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_CheckParameters_System_String___
commentId: M:ASE_Assignment.AppArray.CheckParameters(System.String[])
name.vb: CheckParameters(String())
fullName: ASE_Assignment.AppArray.CheckParameters(string[])
fullName.vb: ASE_Assignment.AppArray.CheckParameters(String())
nameWithType: AppArray.CheckParameters(string[])
nameWithType.vb: AppArray.CheckParameters(String())
- uid: ASE_Assignment.AppArray.CheckParameters*
name: CheckParameters
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_CheckParameters_
commentId: Overload:ASE_Assignment.AppArray.CheckParameters
isSpec: "True"
fullName: ASE_Assignment.AppArray.CheckParameters
nameWithType: AppArray.CheckParameters
- uid: ASE_Assignment.AppArray.Compile
name: Compile()
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_Compile
commentId: M:ASE_Assignment.AppArray.Compile
fullName: ASE_Assignment.AppArray.Compile()
nameWithType: AppArray.Compile()
- uid: ASE_Assignment.AppArray.Compile*
name: Compile
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_Compile_
commentId: Overload:ASE_Assignment.AppArray.Compile
isSpec: "True"
fullName: ASE_Assignment.AppArray.Compile
nameWithType: AppArray.Compile
- uid: ASE_Assignment.AppArray.Execute
name: Execute()
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_Execute
commentId: M:ASE_Assignment.AppArray.Execute
fullName: ASE_Assignment.AppArray.Execute()
nameWithType: AppArray.Execute()
- uid: ASE_Assignment.AppArray.Execute*
name: Execute
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_Execute_
commentId: Overload:ASE_Assignment.AppArray.Execute
isSpec: "True"
fullName: ASE_Assignment.AppArray.Execute
nameWithType: AppArray.Execute
- uid: ASE_Assignment.AppArray.ProcessArrayParametersCompile(System.Boolean)
name: ProcessArrayParametersCompile(bool)
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_ProcessArrayParametersCompile_System_Boolean_
commentId: M:ASE_Assignment.AppArray.ProcessArrayParametersCompile(System.Boolean)
name.vb: ProcessArrayParametersCompile(Boolean)
fullName: ASE_Assignment.AppArray.ProcessArrayParametersCompile(bool)
fullName.vb: ASE_Assignment.AppArray.ProcessArrayParametersCompile(Boolean)
nameWithType: AppArray.ProcessArrayParametersCompile(bool)
nameWithType.vb: AppArray.ProcessArrayParametersCompile(Boolean)
- uid: ASE_Assignment.AppArray.ProcessArrayParametersCompile*
name: ProcessArrayParametersCompile
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_ProcessArrayParametersCompile_
commentId: Overload:ASE_Assignment.AppArray.ProcessArrayParametersCompile
isSpec: "True"
fullName: ASE_Assignment.AppArray.ProcessArrayParametersCompile
nameWithType: AppArray.ProcessArrayParametersCompile
- uid: ASE_Assignment.AppArray.ProcessArrayParametersExecute(System.Boolean)
name: ProcessArrayParametersExecute(bool)
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_ProcessArrayParametersExecute_System_Boolean_
commentId: M:ASE_Assignment.AppArray.ProcessArrayParametersExecute(System.Boolean)
name.vb: ProcessArrayParametersExecute(Boolean)
fullName: ASE_Assignment.AppArray.ProcessArrayParametersExecute(bool)
fullName.vb: ASE_Assignment.AppArray.ProcessArrayParametersExecute(Boolean)
nameWithType: AppArray.ProcessArrayParametersExecute(bool)
nameWithType.vb: AppArray.ProcessArrayParametersExecute(Boolean)
- uid: ASE_Assignment.AppArray.ProcessArrayParametersExecute*
name: ProcessArrayParametersExecute
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_ProcessArrayParametersExecute_
commentId: Overload:ASE_Assignment.AppArray.ProcessArrayParametersExecute
isSpec: "True"
fullName: ASE_Assignment.AppArray.ProcessArrayParametersExecute
nameWithType: AppArray.ProcessArrayParametersExecute
- uid: ASE_Assignment.AppArray.peekValue
name: peekValue
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_peekValue
commentId: F:ASE_Assignment.AppArray.peekValue
fullName: ASE_Assignment.AppArray.peekValue
nameWithType: AppArray.peekValue
- uid: ASE_Assignment.AppArray.pokeValue
name: pokeValue
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_pokeValue
commentId: F:ASE_Assignment.AppArray.pokeValue
fullName: ASE_Assignment.AppArray.pokeValue
nameWithType: AppArray.pokeValue
- uid: ASE_Assignment.AppArray.valueInt
name: valueInt
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_valueInt
commentId: F:ASE_Assignment.AppArray.valueInt
fullName: ASE_Assignment.AppArray.valueInt
nameWithType: AppArray.valueInt
- uid: ASE_Assignment.AppArray.valueReal
name: valueReal
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_valueReal
commentId: F:ASE_Assignment.AppArray.valueReal
fullName: ASE_Assignment.AppArray.valueReal
nameWithType: AppArray.valueReal
- uid: ASE_Assignment.AppArray.variableType
name: variableType
href: api/ASE_Assignment.AppArray.html#ASE_Assignment_AppArray_variableType
commentId: F:ASE_Assignment.AppArray.variableType
fullName: ASE_Assignment.AppArray.variableType
nameWithType: AppArray.variableType
- uid: ASE_Assignment.AppCanvas
name: AppCanvas
href: api/ASE_Assignment.AppCanvas.html
commentId: T:ASE_Assignment.AppCanvas
fullName: ASE_Assignment.AppCanvas
nameWithType: AppCanvas
- uid: ASE_Assignment.AppCanvas.#ctor(System.Int32,System.Int32)
name: AppCanvas(int, int)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas__ctor_System_Int32_System_Int32_
commentId: M:ASE_Assignment.AppCanvas.#ctor(System.Int32,System.Int32)
name.vb: New(Integer, Integer)
fullName: ASE_Assignment.AppCanvas.AppCanvas(int, int)
fullName.vb: ASE_Assignment.AppCanvas.New(Integer, Integer)
nameWithType: AppCanvas.AppCanvas(int, int)
nameWithType.vb: AppCanvas.New(Integer, Integer)
- uid: ASE_Assignment.AppCanvas.#ctor*
name: AppCanvas
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas__ctor_
commentId: Overload:ASE_Assignment.AppCanvas.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.AppCanvas.AppCanvas
fullName.vb: ASE_Assignment.AppCanvas.New
nameWithType: AppCanvas.AppCanvas
nameWithType.vb: AppCanvas.New
- uid: ASE_Assignment.AppCanvas.CheckWithinBounds(System.Int32,System.Int32)
name: CheckWithinBounds(int, int)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_CheckWithinBounds_System_Int32_System_Int32_
commentId: M:ASE_Assignment.AppCanvas.CheckWithinBounds(System.Int32,System.Int32)
name.vb: CheckWithinBounds(Integer, Integer)
fullName: ASE_Assignment.AppCanvas.CheckWithinBounds(int, int)
fullName.vb: ASE_Assignment.AppCanvas.CheckWithinBounds(Integer, Integer)
nameWithType: AppCanvas.CheckWithinBounds(int, int)
nameWithType.vb: AppCanvas.CheckWithinBounds(Integer, Integer)
- uid: ASE_Assignment.AppCanvas.CheckWithinBounds*
name: CheckWithinBounds
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_CheckWithinBounds_
commentId: Overload:ASE_Assignment.AppCanvas.CheckWithinBounds
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.CheckWithinBounds
nameWithType: AppCanvas.CheckWithinBounds
- uid: ASE_Assignment.AppCanvas.Circle(System.Int32,System.Boolean)
name: Circle(int, bool)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Circle_System_Int32_System_Boolean_
commentId: M:ASE_Assignment.AppCanvas.Circle(System.Int32,System.Boolean)
name.vb: Circle(Integer, Boolean)
fullName: ASE_Assignment.AppCanvas.Circle(int, bool)
fullName.vb: ASE_Assignment.AppCanvas.Circle(Integer, Boolean)
nameWithType: AppCanvas.Circle(int, bool)
nameWithType.vb: AppCanvas.Circle(Integer, Boolean)
- uid: ASE_Assignment.AppCanvas.Circle*
name: Circle
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Circle_
commentId: Overload:ASE_Assignment.AppCanvas.Circle
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.Circle
nameWithType: AppCanvas.Circle
- uid: ASE_Assignment.AppCanvas.Clear
name: Clear()
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Clear
commentId: M:ASE_Assignment.AppCanvas.Clear
fullName: ASE_Assignment.AppCanvas.Clear()
nameWithType: AppCanvas.Clear()
- uid: ASE_Assignment.AppCanvas.Clear*
name: Clear
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Clear_
commentId: Overload:ASE_Assignment.AppCanvas.Clear
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.Clear
nameWithType: AppCanvas.Clear
- uid: ASE_Assignment.AppCanvas.DrawTo(System.Int32,System.Int32)
name: DrawTo(int, int)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_DrawTo_System_Int32_System_Int32_
commentId: M:ASE_Assignment.AppCanvas.DrawTo(System.Int32,System.Int32)
name.vb: DrawTo(Integer, Integer)
fullName: ASE_Assignment.AppCanvas.DrawTo(int, int)
fullName.vb: ASE_Assignment.AppCanvas.DrawTo(Integer, Integer)
nameWithType: AppCanvas.DrawTo(int, int)
nameWithType.vb: AppCanvas.DrawTo(Integer, Integer)
- uid: ASE_Assignment.AppCanvas.DrawTo*
name: DrawTo
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_DrawTo_
commentId: Overload:ASE_Assignment.AppCanvas.DrawTo
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.DrawTo
nameWithType: AppCanvas.DrawTo
- uid: ASE_Assignment.AppCanvas.MoveTo(System.Int32,System.Int32)
name: MoveTo(int, int)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_MoveTo_System_Int32_System_Int32_
commentId: M:ASE_Assignment.AppCanvas.MoveTo(System.Int32,System.Int32)
name.vb: MoveTo(Integer, Integer)
fullName: ASE_Assignment.AppCanvas.MoveTo(int, int)
fullName.vb: ASE_Assignment.AppCanvas.MoveTo(Integer, Integer)
nameWithType: AppCanvas.MoveTo(int, int)
nameWithType.vb: AppCanvas.MoveTo(Integer, Integer)
- uid: ASE_Assignment.AppCanvas.MoveTo*
name: MoveTo
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_MoveTo_
commentId: Overload:ASE_Assignment.AppCanvas.MoveTo
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.MoveTo
nameWithType: AppCanvas.MoveTo
- uid: ASE_Assignment.AppCanvas.PenColour
name: PenColour
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_PenColour
commentId: P:ASE_Assignment.AppCanvas.PenColour
fullName: ASE_Assignment.AppCanvas.PenColour
nameWithType: AppCanvas.PenColour
- uid: ASE_Assignment.AppCanvas.PenColour*
name: PenColour
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_PenColour_
commentId: Overload:ASE_Assignment.AppCanvas.PenColour
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.PenColour
nameWithType: AppCanvas.PenColour
- uid: ASE_Assignment.AppCanvas.Rect(System.Int32,System.Int32,System.Boolean)
name: Rect(int, int, bool)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Rect_System_Int32_System_Int32_System_Boolean_
commentId: M:ASE_Assignment.AppCanvas.Rect(System.Int32,System.Int32,System.Boolean)
name.vb: Rect(Integer, Integer, Boolean)
fullName: ASE_Assignment.AppCanvas.Rect(int, int, bool)
fullName.vb: ASE_Assignment.AppCanvas.Rect(Integer, Integer, Boolean)
nameWithType: AppCanvas.Rect(int, int, bool)
nameWithType.vb: AppCanvas.Rect(Integer, Integer, Boolean)
- uid: ASE_Assignment.AppCanvas.Rect*
name: Rect
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Rect_
commentId: Overload:ASE_Assignment.AppCanvas.Rect
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.Rect
nameWithType: AppCanvas.Rect
- uid: ASE_Assignment.AppCanvas.Reset
name: Reset()
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Reset
commentId: M:ASE_Assignment.AppCanvas.Reset
fullName: ASE_Assignment.AppCanvas.Reset()
nameWithType: AppCanvas.Reset()
- uid: ASE_Assignment.AppCanvas.Reset*
name: Reset
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Reset_
commentId: Overload:ASE_Assignment.AppCanvas.Reset
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.Reset
nameWithType: AppCanvas.Reset
- uid: ASE_Assignment.AppCanvas.Set(System.Int32,System.Int32)
name: Set(int, int)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Set_System_Int32_System_Int32_
commentId: M:ASE_Assignment.AppCanvas.Set(System.Int32,System.Int32)
name.vb: Set(Integer, Integer)
fullName: ASE_Assignment.AppCanvas.Set(int, int)
fullName.vb: ASE_Assignment.AppCanvas.Set(Integer, Integer)
nameWithType: AppCanvas.Set(int, int)
nameWithType.vb: AppCanvas.Set(Integer, Integer)
- uid: ASE_Assignment.AppCanvas.Set*
name: Set
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Set_
commentId: Overload:ASE_Assignment.AppCanvas.Set
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.Set
nameWithType: AppCanvas.Set
- uid: ASE_Assignment.AppCanvas.SetColour(System.Int32,System.Int32,System.Int32)
name: SetColour(int, int, int)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_SetColour_System_Int32_System_Int32_System_Int32_
commentId: M:ASE_Assignment.AppCanvas.SetColour(System.Int32,System.Int32,System.Int32)
name.vb: SetColour(Integer, Integer, Integer)
fullName: ASE_Assignment.AppCanvas.SetColour(int, int, int)
fullName.vb: ASE_Assignment.AppCanvas.SetColour(Integer, Integer, Integer)
nameWithType: AppCanvas.SetColour(int, int, int)
nameWithType.vb: AppCanvas.SetColour(Integer, Integer, Integer)
- uid: ASE_Assignment.AppCanvas.SetColour*
name: SetColour
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_SetColour_
commentId: Overload:ASE_Assignment.AppCanvas.SetColour
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.SetColour
nameWithType: AppCanvas.SetColour
- uid: ASE_Assignment.AppCanvas.Tri(System.Int32,System.Int32)
name: Tri(int, int)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Tri_System_Int32_System_Int32_
commentId: M:ASE_Assignment.AppCanvas.Tri(System.Int32,System.Int32)
name.vb: Tri(Integer, Integer)
fullName: ASE_Assignment.AppCanvas.Tri(int, int)
fullName.vb: ASE_Assignment.AppCanvas.Tri(Integer, Integer)
nameWithType: AppCanvas.Tri(int, int)
nameWithType.vb: AppCanvas.Tri(Integer, Integer)
- uid: ASE_Assignment.AppCanvas.Tri*
name: Tri
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Tri_
commentId: Overload:ASE_Assignment.AppCanvas.Tri
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.Tri
nameWithType: AppCanvas.Tri
- uid: ASE_Assignment.AppCanvas.WriteText(System.String)
name: WriteText(string)
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_WriteText_System_String_
commentId: M:ASE_Assignment.AppCanvas.WriteText(System.String)
name.vb: WriteText(String)
fullName: ASE_Assignment.AppCanvas.WriteText(string)
fullName.vb: ASE_Assignment.AppCanvas.WriteText(String)
nameWithType: AppCanvas.WriteText(string)
nameWithType.vb: AppCanvas.WriteText(String)
- uid: ASE_Assignment.AppCanvas.WriteText*
name: WriteText
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_WriteText_
commentId: Overload:ASE_Assignment.AppCanvas.WriteText
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.WriteText
nameWithType: AppCanvas.WriteText
- uid: ASE_Assignment.AppCanvas.Xpos
name: Xpos
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Xpos
commentId: P:ASE_Assignment.AppCanvas.Xpos
fullName: ASE_Assignment.AppCanvas.Xpos
nameWithType: AppCanvas.Xpos
- uid: ASE_Assignment.AppCanvas.Xpos*
name: Xpos
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Xpos_
commentId: Overload:ASE_Assignment.AppCanvas.Xpos
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.Xpos
nameWithType: AppCanvas.Xpos
- uid: ASE_Assignment.AppCanvas.Ypos
name: Ypos
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Ypos
commentId: P:ASE_Assignment.AppCanvas.Ypos
fullName: ASE_Assignment.AppCanvas.Ypos
nameWithType: AppCanvas.Ypos
- uid: ASE_Assignment.AppCanvas.Ypos*
name: Ypos
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_Ypos_
commentId: Overload:ASE_Assignment.AppCanvas.Ypos
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.Ypos
nameWithType: AppCanvas.Ypos
- uid: ASE_Assignment.AppCanvas.getBitmap
name: getBitmap()
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_getBitmap
commentId: M:ASE_Assignment.AppCanvas.getBitmap
fullName: ASE_Assignment.AppCanvas.getBitmap()
nameWithType: AppCanvas.getBitmap()
- uid: ASE_Assignment.AppCanvas.getBitmap*
name: getBitmap
href: api/ASE_Assignment.AppCanvas.html#ASE_Assignment_AppCanvas_getBitmap_
commentId: Overload:ASE_Assignment.AppCanvas.getBitmap
isSpec: "True"
fullName: ASE_Assignment.AppCanvas.getBitmap
nameWithType: AppCanvas.getBitmap
- uid: ASE_Assignment.AppCommandFactory
name: AppCommandFactory
href: api/ASE_Assignment.AppCommandFactory.html
commentId: T:ASE_Assignment.AppCommandFactory
fullName: ASE_Assignment.AppCommandFactory
nameWithType: AppCommandFactory
- uid: ASE_Assignment.AppCommandFactory.MakeCommand(System.String)
name: MakeCommand(string)
href: api/ASE_Assignment.AppCommandFactory.html#ASE_Assignment_AppCommandFactory_MakeCommand_System_String_
commentId: M:ASE_Assignment.AppCommandFactory.MakeCommand(System.String)
name.vb: MakeCommand(String)
fullName: ASE_Assignment.AppCommandFactory.MakeCommand(string)
fullName.vb: ASE_Assignment.AppCommandFactory.MakeCommand(String)
nameWithType: AppCommandFactory.MakeCommand(string)
nameWithType.vb: AppCommandFactory.MakeCommand(String)
- uid: ASE_Assignment.AppCommandFactory.MakeCommand*
name: MakeCommand
href: api/ASE_Assignment.AppCommandFactory.html#ASE_Assignment_AppCommandFactory_MakeCommand_
commentId: Overload:ASE_Assignment.AppCommandFactory.MakeCommand
isSpec: "True"
fullName: ASE_Assignment.AppCommandFactory.MakeCommand
nameWithType: AppCommandFactory.MakeCommand
- uid: ASE_Assignment.AppCompoundCommand
name: AppCompoundCommand
href: api/ASE_Assignment.AppCompoundCommand.html
commentId: T:ASE_Assignment.AppCompoundCommand
fullName: ASE_Assignment.AppCompoundCommand
nameWithType: AppCompoundCommand
- uid: ASE_Assignment.AppCompoundCommand.CorrespondingCommand
name: CorrespondingCommand
href: api/ASE_Assignment.AppCompoundCommand.html#ASE_Assignment_AppCompoundCommand_CorrespondingCommand
commentId: P:ASE_Assignment.AppCompoundCommand.CorrespondingCommand
fullName: ASE_Assignment.AppCompoundCommand.CorrespondingCommand
nameWithType: AppCompoundCommand.CorrespondingCommand
- uid: ASE_Assignment.AppCompoundCommand.CorrespondingCommand*
name: CorrespondingCommand
href: api/ASE_Assignment.AppCompoundCommand.html#ASE_Assignment_AppCompoundCommand_CorrespondingCommand_
commentId: Overload:ASE_Assignment.AppCompoundCommand.CorrespondingCommand
isSpec: "True"
fullName: ASE_Assignment.AppCompoundCommand.CorrespondingCommand
nameWithType: AppCompoundCommand.CorrespondingCommand
- uid: ASE_Assignment.AppElse
name: AppElse
href: api/ASE_Assignment.AppElse.html
commentId: T:ASE_Assignment.AppElse
fullName: ASE_Assignment.AppElse
nameWithType: AppElse
- uid: ASE_Assignment.AppElse.#ctor
name: AppElse()
href: api/ASE_Assignment.AppElse.html#ASE_Assignment_AppElse__ctor
commentId: M:ASE_Assignment.AppElse.#ctor
name.vb: New()
fullName: ASE_Assignment.AppElse.AppElse()
fullName.vb: ASE_Assignment.AppElse.New()
nameWithType: AppElse.AppElse()
nameWithType.vb: AppElse.New()
- uid: ASE_Assignment.AppElse.#ctor*
name: AppElse
href: api/ASE_Assignment.AppElse.html#ASE_Assignment_AppElse__ctor_
commentId: Overload:ASE_Assignment.AppElse.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.AppElse.AppElse
fullName.vb: ASE_Assignment.AppElse.New
nameWithType: AppElse.AppElse
nameWithType.vb: AppElse.New
- uid: ASE_Assignment.AppEnd
name: AppEnd
href: api/ASE_Assignment.AppEnd.html
commentId: T:ASE_Assignment.AppEnd
fullName: ASE_Assignment.AppEnd
nameWithType: AppEnd
- uid: ASE_Assignment.AppEnd.Execute
name: Execute()
href: api/ASE_Assignment.AppEnd.html#ASE_Assignment_AppEnd_Execute
commentId: M:ASE_Assignment.AppEnd.Execute
fullName: ASE_Assignment.AppEnd.Execute()
nameWithType: AppEnd.Execute()
- uid: ASE_Assignment.AppEnd.Execute*
name: Execute
href: api/ASE_Assignment.AppEnd.html#ASE_Assignment_AppEnd_Execute_
commentId: Overload:ASE_Assignment.AppEnd.Execute
isSpec: "True"
fullName: ASE_Assignment.AppEnd.Execute
nameWithType: AppEnd.Execute
- uid: ASE_Assignment.AppFor
name: AppFor
href: api/ASE_Assignment.AppFor.html
commentId: T:ASE_Assignment.AppFor
fullName: ASE_Assignment.AppFor
nameWithType: AppFor
- uid: ASE_Assignment.AppIf
name: AppIf
href: api/ASE_Assignment.AppIf.html
commentId: T:ASE_Assignment.AppIf
fullName: ASE_Assignment.AppIf
nameWithType: AppIf
- uid: ASE_Assignment.AppInt
name: AppInt
href: api/ASE_Assignment.AppInt.html
commentId: T:ASE_Assignment.AppInt
fullName: ASE_Assignment.AppInt
nameWithType: AppInt
- uid: ASE_Assignment.AppInt.Restrictions
name: Restrictions()
href: api/ASE_Assignment.AppInt.html#ASE_Assignment_AppInt_Restrictions
commentId: M:ASE_Assignment.AppInt.Restrictions
fullName: ASE_Assignment.AppInt.Restrictions()
nameWithType: AppInt.Restrictions()
- uid: ASE_Assignment.AppInt.Restrictions*
name: Restrictions
href: api/ASE_Assignment.AppInt.html#ASE_Assignment_AppInt_Restrictions_
commentId: Overload:ASE_Assignment.AppInt.Restrictions
isSpec: "True"
fullName: ASE_Assignment.AppInt.Restrictions
nameWithType: AppInt.Restrictions
- uid: ASE_Assignment.AppPeek
name: AppPeek
href: api/ASE_Assignment.AppPeek.html
commentId: T:ASE_Assignment.AppPeek
fullName: ASE_Assignment.AppPeek
nameWithType: AppPeek
- uid: ASE_Assignment.AppPeek.Compile
name: Compile()
href: api/ASE_Assignment.AppPeek.html#ASE_Assignment_AppPeek_Compile
commentId: M:ASE_Assignment.AppPeek.Compile
fullName: ASE_Assignment.AppPeek.Compile()
nameWithType: AppPeek.Compile()
- uid: ASE_Assignment.AppPeek.Compile*
name: Compile
href: api/ASE_Assignment.AppPeek.html#ASE_Assignment_AppPeek_Compile_
commentId: Overload:ASE_Assignment.AppPeek.Compile
isSpec: "True"
fullName: ASE_Assignment.AppPeek.Compile
nameWithType: AppPeek.Compile
- uid: ASE_Assignment.AppPeek.Execute
name: Execute()
href: api/ASE_Assignment.AppPeek.html#ASE_Assignment_AppPeek_Execute
commentId: M:ASE_Assignment.AppPeek.Execute
fullName: ASE_Assignment.AppPeek.Execute()
nameWithType: AppPeek.Execute()
- uid: ASE_Assignment.AppPeek.Execute*
name: Execute
href: api/ASE_Assignment.AppPeek.html#ASE_Assignment_AppPeek_Execute_
commentId: Overload:ASE_Assignment.AppPeek.Execute
isSpec: "True"
fullName: ASE_Assignment.AppPeek.Execute
nameWithType: AppPeek.Execute
- uid: ASE_Assignment.AppPoke
name: AppPoke
href: api/ASE_Assignment.AppPoke.html
commentId: T:ASE_Assignment.AppPoke
fullName: ASE_Assignment.AppPoke
nameWithType: AppPoke
- uid: ASE_Assignment.AppPoke.Compile
name: Compile()
href: api/ASE_Assignment.AppPoke.html#ASE_Assignment_AppPoke_Compile
commentId: M:ASE_Assignment.AppPoke.Compile
fullName: ASE_Assignment.AppPoke.Compile()
nameWithType: AppPoke.Compile()
- uid: ASE_Assignment.AppPoke.Compile*
name: Compile
href: api/ASE_Assignment.AppPoke.html#ASE_Assignment_AppPoke_Compile_
commentId: Overload:ASE_Assignment.AppPoke.Compile
isSpec: "True"
fullName: ASE_Assignment.AppPoke.Compile
nameWithType: AppPoke.Compile
- uid: ASE_Assignment.AppPoke.Execute
name: Execute()
href: api/ASE_Assignment.AppPoke.html#ASE_Assignment_AppPoke_Execute
commentId: M:ASE_Assignment.AppPoke.Execute
fullName: ASE_Assignment.AppPoke.Execute()
nameWithType: AppPoke.Execute()
- uid: ASE_Assignment.AppPoke.Execute*
name: Execute
href: api/ASE_Assignment.AppPoke.html#ASE_Assignment_AppPoke_Execute_
commentId: Overload:ASE_Assignment.AppPoke.Execute
isSpec: "True"
fullName: ASE_Assignment.AppPoke.Execute
nameWithType: AppPoke.Execute
- uid: ASE_Assignment.AppReal
name: AppReal
href: api/ASE_Assignment.AppReal.html
commentId: T:ASE_Assignment.AppReal
fullName: ASE_Assignment.AppReal
nameWithType: AppReal
- uid: ASE_Assignment.AppReal.Restrictions
name: Restrictions()
href: api/ASE_Assignment.AppReal.html#ASE_Assignment_AppReal_Restrictions
commentId: M:ASE_Assignment.AppReal.Restrictions
fullName: ASE_Assignment.AppReal.Restrictions()
nameWithType: AppReal.Restrictions()
- uid: ASE_Assignment.AppReal.Restrictions*
name: Restrictions
href: api/ASE_Assignment.AppReal.html#ASE_Assignment_AppReal_Restrictions_
commentId: Overload:ASE_Assignment.AppReal.Restrictions
isSpec: "True"
fullName: ASE_Assignment.AppReal.Restrictions
nameWithType: AppReal.Restrictions
- uid: ASE_Assignment.AppStoredProgram
name: AppStoredProgram
href: api/ASE_Assignment.AppStoredProgram.html
commentId: T:ASE_Assignment.AppStoredProgram
fullName: ASE_Assignment.AppStoredProgram
nameWithType: AppStoredProgram
- uid: ASE_Assignment.AppStoredProgram.#ctor(BOOSE.ICanvas)
name: AppStoredProgram(ICanvas)
href: api/ASE_Assignment.AppStoredProgram.html#ASE_Assignment_AppStoredProgram__ctor_BOOSE_ICanvas_
commentId: M:ASE_Assignment.AppStoredProgram.#ctor(BOOSE.ICanvas)
name.vb: New(ICanvas)
fullName: ASE_Assignment.AppStoredProgram.AppStoredProgram(BOOSE.ICanvas)
fullName.vb: ASE_Assignment.AppStoredProgram.New(BOOSE.ICanvas)
nameWithType: AppStoredProgram.AppStoredProgram(ICanvas)
nameWithType.vb: AppStoredProgram.New(ICanvas)
- uid: ASE_Assignment.AppStoredProgram.#ctor*
name: AppStoredProgram
href: api/ASE_Assignment.AppStoredProgram.html#ASE_Assignment_AppStoredProgram__ctor_
commentId: Overload:ASE_Assignment.AppStoredProgram.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.AppStoredProgram.AppStoredProgram
fullName.vb: ASE_Assignment.AppStoredProgram.New
nameWithType: AppStoredProgram.AppStoredProgram
nameWithType.vb: AppStoredProgram.New
- uid: ASE_Assignment.AppStoredProgram.Run
name: Run()
href: api/ASE_Assignment.AppStoredProgram.html#ASE_Assignment_AppStoredProgram_Run
commentId: M:ASE_Assignment.AppStoredProgram.Run
fullName: ASE_Assignment.AppStoredProgram.Run()
nameWithType: AppStoredProgram.Run()
- uid: ASE_Assignment.AppStoredProgram.Run*
name: Run
href: api/ASE_Assignment.AppStoredProgram.html#ASE_Assignment_AppStoredProgram_Run_
commentId: Overload:ASE_Assignment.AppStoredProgram.Run
isSpec: "True"
fullName: ASE_Assignment.AppStoredProgram.Run
nameWithType: AppStoredProgram.Run
- uid: ASE_Assignment.AppWhile
name: AppWhile
href: api/ASE_Assignment.AppWhile.html
commentId: T:ASE_Assignment.AppWhile
fullName: ASE_Assignment.AppWhile
nameWithType: AppWhile
- uid: ASE_Assignment.BooseInterpreter
name: BooseInterpreter
href: api/ASE_Assignment.BooseInterpreter.html
commentId: T:ASE_Assignment.BooseInterpreter
fullName: ASE_Assignment.BooseInterpreter
nameWithType: BooseInterpreter
- uid: ASE_Assignment.BooseInterpreter.#ctor
name: BooseInterpreter()
href: api/ASE_Assignment.BooseInterpreter.html#ASE_Assignment_BooseInterpreter__ctor
commentId: M:ASE_Assignment.BooseInterpreter.#ctor
name.vb: New()
fullName: ASE_Assignment.BooseInterpreter.BooseInterpreter()
fullName.vb: ASE_Assignment.BooseInterpreter.New()
nameWithType: BooseInterpreter.BooseInterpreter()
nameWithType.vb: BooseInterpreter.New()
- uid: ASE_Assignment.BooseInterpreter.#ctor*
name: BooseInterpreter
href: api/ASE_Assignment.BooseInterpreter.html#ASE_Assignment_BooseInterpreter__ctor_
commentId: Overload:ASE_Assignment.BooseInterpreter.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.BooseInterpreter.BooseInterpreter
fullName.vb: ASE_Assignment.BooseInterpreter.New
nameWithType: BooseInterpreter.BooseInterpreter
nameWithType.vb: BooseInterpreter.New
- uid: ASE_Assignment.BooseInterpreter.Dispose(System.Boolean)
name: Dispose(bool)
href: api/ASE_Assignment.BooseInterpreter.html#ASE_Assignment_BooseInterpreter_Dispose_System_Boolean_
commentId: M:ASE_Assignment.BooseInterpreter.Dispose(System.Boolean)
name.vb: Dispose(Boolean)
fullName: ASE_Assignment.BooseInterpreter.Dispose(bool)
fullName.vb: ASE_Assignment.BooseInterpreter.Dispose(Boolean)
nameWithType: BooseInterpreter.Dispose(bool)
nameWithType.vb: BooseInterpreter.Dispose(Boolean)
- uid: ASE_Assignment.BooseInterpreter.Dispose*
name: Dispose
href: api/ASE_Assignment.BooseInterpreter.html#ASE_Assignment_BooseInterpreter_Dispose_
commentId: Overload:ASE_Assignment.BooseInterpreter.Dispose
isSpec: "True"
fullName: ASE_Assignment.BooseInterpreter.Dispose
nameWithType: BooseInterpreter.Dispose
- uid: ASE_Assignment.BooseInterpreter.UpdatePictureBox
name: UpdatePictureBox()
href: api/ASE_Assignment.BooseInterpreter.html#ASE_Assignment_BooseInterpreter_UpdatePictureBox
commentId: M:ASE_Assignment.BooseInterpreter.UpdatePictureBox
fullName: ASE_Assignment.BooseInterpreter.UpdatePictureBox()
nameWithType: BooseInterpreter.UpdatePictureBox()
- uid: ASE_Assignment.BooseInterpreter.UpdatePictureBox*
name: UpdatePictureBox
href: api/ASE_Assignment.BooseInterpreter.html#ASE_Assignment_BooseInterpreter_UpdatePictureBox_
commentId: Overload:ASE_Assignment.BooseInterpreter.UpdatePictureBox
isSpec: "True"
fullName: ASE_Assignment.BooseInterpreter.UpdatePictureBox
nameWithType: BooseInterpreter.UpdatePictureBox
- uid: ASE_Assignment.Circle
name: Circle
href: api/ASE_Assignment.Circle.html
commentId: T:ASE_Assignment.Circle
fullName: ASE_Assignment.Circle
nameWithType: Circle
- uid: ASE_Assignment.Circle.#ctor
name: Circle()
href: api/ASE_Assignment.Circle.html#ASE_Assignment_Circle__ctor
commentId: M:ASE_Assignment.Circle.#ctor
name.vb: New()
fullName: ASE_Assignment.Circle.Circle()
fullName.vb: ASE_Assignment.Circle.New()
nameWithType: Circle.Circle()
nameWithType.vb: Circle.New()
- uid: ASE_Assignment.Circle.#ctor(System.Int32)
name: Circle(int)
href: api/ASE_Assignment.Circle.html#ASE_Assignment_Circle__ctor_System_Int32_
commentId: M:ASE_Assignment.Circle.#ctor(System.Int32)
name.vb: New(Integer)
fullName: ASE_Assignment.Circle.Circle(int)
fullName.vb: ASE_Assignment.Circle.New(Integer)
nameWithType: Circle.Circle(int)
nameWithType.vb: Circle.New(Integer)
- uid: ASE_Assignment.Circle.#ctor*
name: Circle
href: api/ASE_Assignment.Circle.html#ASE_Assignment_Circle__ctor_
commentId: Overload:ASE_Assignment.Circle.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.Circle.Circle
fullName.vb: ASE_Assignment.Circle.New
nameWithType: Circle.Circle
nameWithType.vb: Circle.New
- uid: ASE_Assignment.Circle.CheckParameters(System.String[])
name: CheckParameters(string[])
href: api/ASE_Assignment.Circle.html#ASE_Assignment_Circle_CheckParameters_System_String___
commentId: M:ASE_Assignment.Circle.CheckParameters(System.String[])
name.vb: CheckParameters(String())
fullName: ASE_Assignment.Circle.CheckParameters(string[])
fullName.vb: ASE_Assignment.Circle.CheckParameters(String())
nameWithType: Circle.CheckParameters(string[])
nameWithType.vb: Circle.CheckParameters(String())
- uid: ASE_Assignment.Circle.CheckParameters*
name: CheckParameters
href: api/ASE_Assignment.Circle.html#ASE_Assignment_Circle_CheckParameters_
commentId: Overload:ASE_Assignment.Circle.CheckParameters
isSpec: "True"
fullName: ASE_Assignment.Circle.CheckParameters
nameWithType: Circle.CheckParameters
- uid: ASE_Assignment.Circle.Execute
name: Execute()
href: api/ASE_Assignment.Circle.html#ASE_Assignment_Circle_Execute
commentId: M:ASE_Assignment.Circle.Execute
fullName: ASE_Assignment.Circle.Execute()
nameWithType: Circle.Execute()
- uid: ASE_Assignment.Circle.Execute*
name: Execute
href: api/ASE_Assignment.Circle.html#ASE_Assignment_Circle_Execute_
commentId: Overload:ASE_Assignment.Circle.Execute
isSpec: "True"
fullName: ASE_Assignment.Circle.Execute
nameWithType: Circle.Execute
- uid: ASE_Assignment.Form1
name: Form1
href: api/ASE_Assignment.Form1.html
commentId: T:ASE_Assignment.Form1
fullName: ASE_Assignment.Form1
nameWithType: Form1
- uid: ASE_Assignment.Form1.#ctor
name: Form1()
href: api/ASE_Assignment.Form1.html#ASE_Assignment_Form1__ctor
commentId: M:ASE_Assignment.Form1.#ctor
name.vb: New()
fullName: ASE_Assignment.Form1.Form1()
fullName.vb: ASE_Assignment.Form1.New()
nameWithType: Form1.Form1()
nameWithType.vb: Form1.New()
- uid: ASE_Assignment.Form1.#ctor*
name: Form1
href: api/ASE_Assignment.Form1.html#ASE_Assignment_Form1__ctor_
commentId: Overload:ASE_Assignment.Form1.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.Form1.Form1
fullName.vb: ASE_Assignment.Form1.New
nameWithType: Form1.Form1
nameWithType.vb: Form1.New
- uid: ASE_Assignment.Form1.Dispose(System.Boolean)
name: Dispose(bool)
href: api/ASE_Assignment.Form1.html#ASE_Assignment_Form1_Dispose_System_Boolean_
commentId: M:ASE_Assignment.Form1.Dispose(System.Boolean)
name.vb: Dispose(Boolean)
fullName: ASE_Assignment.Form1.Dispose(bool)
fullName.vb: ASE_Assignment.Form1.Dispose(Boolean)
nameWithType: Form1.Dispose(bool)
nameWithType.vb: Form1.Dispose(Boolean)
- uid: ASE_Assignment.Form1.Dispose*
name: Dispose
href: api/ASE_Assignment.Form1.html#ASE_Assignment_Form1_Dispose_
commentId: Overload:ASE_Assignment.Form1.Dispose
isSpec: "True"
fullName: ASE_Assignment.Form1.Dispose
nameWithType: Form1.Dispose
- uid: ASE_Assignment.Form1.UpdatePictureBox
name: UpdatePictureBox()
href: api/ASE_Assignment.Form1.html#ASE_Assignment_Form1_UpdatePictureBox
commentId: M:ASE_Assignment.Form1.UpdatePictureBox
fullName: ASE_Assignment.Form1.UpdatePictureBox()
nameWithType: Form1.UpdatePictureBox()
- uid: ASE_Assignment.Form1.UpdatePictureBox*
name: UpdatePictureBox
href: api/ASE_Assignment.Form1.html#ASE_Assignment_Form1_UpdatePictureBox_
commentId: Overload:ASE_Assignment.Form1.UpdatePictureBox
isSpec: "True"
fullName: ASE_Assignment.Form1.UpdatePictureBox
nameWithType: Form1.UpdatePictureBox
- uid: ASE_Assignment.MoveTo
name: MoveTo
href: api/ASE_Assignment.MoveTo.html
commentId: T:ASE_Assignment.MoveTo
fullName: ASE_Assignment.MoveTo
nameWithType: MoveTo
- uid: ASE_Assignment.MoveTo.Execute
name: Execute()
href: api/ASE_Assignment.MoveTo.html#ASE_Assignment_MoveTo_Execute
commentId: M:ASE_Assignment.MoveTo.Execute
fullName: ASE_Assignment.MoveTo.Execute()
nameWithType: MoveTo.Execute()
- uid: ASE_Assignment.MoveTo.Execute*
name: Execute
href: api/ASE_Assignment.MoveTo.html#ASE_Assignment_MoveTo_Execute_
commentId: Overload:ASE_Assignment.MoveTo.Execute
isSpec: "True"
fullName: ASE_Assignment.MoveTo.Execute
nameWithType: MoveTo.Execute
- uid: ASE_Assignment.PenColour
name: PenColour
href: api/ASE_Assignment.PenColour.html
commentId: T:ASE_Assignment.PenColour
fullName: ASE_Assignment.PenColour
nameWithType: PenColour
- uid: ASE_Assignment.PenColour.Execute
name: Execute()
href: api/ASE_Assignment.PenColour.html#ASE_Assignment_PenColour_Execute
commentId: M:ASE_Assignment.PenColour.Execute
fullName: ASE_Assignment.PenColour.Execute()
nameWithType: PenColour.Execute()
- uid: ASE_Assignment.PenColour.Execute*
name: Execute
href: api/ASE_Assignment.PenColour.html#ASE_Assignment_PenColour_Execute_
commentId: Overload:ASE_Assignment.PenColour.Execute
isSpec: "True"
fullName: ASE_Assignment.PenColour.Execute
nameWithType: PenColour.Execute
- uid: ASE_Assignment.Rect
name: Rect
href: api/ASE_Assignment.Rect.html
commentId: T:ASE_Assignment.Rect
fullName: ASE_Assignment.Rect
nameWithType: Rect
- uid: ASE_Assignment.Rect.#ctor
name: Rect()
href: api/ASE_Assignment.Rect.html#ASE_Assignment_Rect__ctor
commentId: M:ASE_Assignment.Rect.#ctor
name.vb: New()
fullName: ASE_Assignment.Rect.Rect()
fullName.vb: ASE_Assignment.Rect.New()
nameWithType: Rect.Rect()
nameWithType.vb: Rect.New()
- uid: ASE_Assignment.Rect.#ctor(System.Int32,System.Int32)
name: Rect(int, int)
href: api/ASE_Assignment.Rect.html#ASE_Assignment_Rect__ctor_System_Int32_System_Int32_
commentId: M:ASE_Assignment.Rect.#ctor(System.Int32,System.Int32)
name.vb: New(Integer, Integer)
fullName: ASE_Assignment.Rect.Rect(int, int)
fullName.vb: ASE_Assignment.Rect.New(Integer, Integer)
nameWithType: Rect.Rect(int, int)
nameWithType.vb: Rect.New(Integer, Integer)
- uid: ASE_Assignment.Rect.#ctor*
name: Rect
href: api/ASE_Assignment.Rect.html#ASE_Assignment_Rect__ctor_
commentId: Overload:ASE_Assignment.Rect.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.Rect.Rect
fullName.vb: ASE_Assignment.Rect.New
nameWithType: Rect.Rect
nameWithType.vb: Rect.New
- uid: ASE_Assignment.Rect.CheckParameters(System.String[])
name: CheckParameters(string[])
href: api/ASE_Assignment.Rect.html#ASE_Assignment_Rect_CheckParameters_System_String___
commentId: M:ASE_Assignment.Rect.CheckParameters(System.String[])
name.vb: CheckParameters(String())
fullName: ASE_Assignment.Rect.CheckParameters(string[])
fullName.vb: ASE_Assignment.Rect.CheckParameters(String())
nameWithType: Rect.CheckParameters(string[])
nameWithType.vb: Rect.CheckParameters(String())
- uid: ASE_Assignment.Rect.CheckParameters*
name: CheckParameters
href: api/ASE_Assignment.Rect.html#ASE_Assignment_Rect_CheckParameters_
commentId: Overload:ASE_Assignment.Rect.CheckParameters
isSpec: "True"
fullName: ASE_Assignment.Rect.CheckParameters
nameWithType: Rect.CheckParameters
- uid: ASE_Assignment.Rect.Execute
name: Execute()
href: api/ASE_Assignment.Rect.html#ASE_Assignment_Rect_Execute
commentId: M:ASE_Assignment.Rect.Execute
fullName: ASE_Assignment.Rect.Execute()
nameWithType: Rect.Execute()
- uid: ASE_Assignment.Rect.Execute*
name: Execute
href: api/ASE_Assignment.Rect.html#ASE_Assignment_Rect_Execute_
commentId: Overload:ASE_Assignment.Rect.Execute
isSpec: "True"
fullName: ASE_Assignment.Rect.Execute
nameWithType: Rect.Execute
- uid: ASE_Assignment.Tri
name: Tri
href: api/ASE_Assignment.Tri.html
commentId: T:ASE_Assignment.Tri
fullName: ASE_Assignment.Tri
nameWithType: Tri
- uid: ASE_Assignment.Tri.#ctor
name: Tri()
href: api/ASE_Assignment.Tri.html#ASE_Assignment_Tri__ctor
commentId: M:ASE_Assignment.Tri.#ctor
name.vb: New()
fullName: ASE_Assignment.Tri.Tri()
fullName.vb: ASE_Assignment.Tri.New()
nameWithType: Tri.Tri()
nameWithType.vb: Tri.New()
- uid: ASE_Assignment.Tri.#ctor(System.Int32,System.Int32)
name: Tri(int, int)
href: api/ASE_Assignment.Tri.html#ASE_Assignment_Tri__ctor_System_Int32_System_Int32_
commentId: M:ASE_Assignment.Tri.#ctor(System.Int32,System.Int32)
name.vb: New(Integer, Integer)
fullName: ASE_Assignment.Tri.Tri(int, int)
fullName.vb: ASE_Assignment.Tri.New(Integer, Integer)
nameWithType: Tri.Tri(int, int)
nameWithType.vb: Tri.New(Integer, Integer)
- uid: ASE_Assignment.Tri.#ctor*
name: Tri
href: api/ASE_Assignment.Tri.html#ASE_Assignment_Tri__ctor_
commentId: Overload:ASE_Assignment.Tri.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.Tri.Tri
fullName.vb: ASE_Assignment.Tri.New
nameWithType: Tri.Tri
nameWithType.vb: Tri.New
- uid: ASE_Assignment.Tri.CheckParameters(System.String[])
name: CheckParameters(string[])
href: api/ASE_Assignment.Tri.html#ASE_Assignment_Tri_CheckParameters_System_String___
commentId: M:ASE_Assignment.Tri.CheckParameters(System.String[])
name.vb: CheckParameters(String())
fullName: ASE_Assignment.Tri.CheckParameters(string[])
fullName.vb: ASE_Assignment.Tri.CheckParameters(String())
nameWithType: Tri.CheckParameters(string[])
nameWithType.vb: Tri.CheckParameters(String())
- uid: ASE_Assignment.Tri.CheckParameters*
name: CheckParameters
href: api/ASE_Assignment.Tri.html#ASE_Assignment_Tri_CheckParameters_
commentId: Overload:ASE_Assignment.Tri.CheckParameters
isSpec: "True"
fullName: ASE_Assignment.Tri.CheckParameters
nameWithType: Tri.CheckParameters
- uid: ASE_Assignment.Tri.Execute
name: Execute()
href: api/ASE_Assignment.Tri.html#ASE_Assignment_Tri_Execute
commentId: M:ASE_Assignment.Tri.Execute
fullName: ASE_Assignment.Tri.Execute()
nameWithType: Tri.Execute()
- uid: ASE_Assignment.Tri.Execute*
name: Execute
href: api/ASE_Assignment.Tri.html#ASE_Assignment_Tri_Execute_
commentId: Overload:ASE_Assignment.Tri.Execute
isSpec: "True"
fullName: ASE_Assignment.Tri.Execute
nameWithType: Tri.Execute
- uid: ASE_Assignment.WriteText
name: WriteText
href: api/ASE_Assignment.WriteText.html
commentId: T:ASE_Assignment.WriteText
fullName: ASE_Assignment.WriteText
nameWithType: WriteText
- uid: ASE_Assignment.WriteText.#ctor
name: WriteText()
href: api/ASE_Assignment.WriteText.html#ASE_Assignment_WriteText__ctor
commentId: M:ASE_Assignment.WriteText.#ctor
name.vb: New()
fullName: ASE_Assignment.WriteText.WriteText()
fullName.vb: ASE_Assignment.WriteText.New()
nameWithType: WriteText.WriteText()
nameWithType.vb: WriteText.New()
- uid: ASE_Assignment.WriteText.#ctor(System.String)
name: WriteText(string)
href: api/ASE_Assignment.WriteText.html#ASE_Assignment_WriteText__ctor_System_String_
commentId: M:ASE_Assignment.WriteText.#ctor(System.String)
name.vb: New(String)
fullName: ASE_Assignment.WriteText.WriteText(string)
fullName.vb: ASE_Assignment.WriteText.New(String)
nameWithType: WriteText.WriteText(string)
nameWithType.vb: WriteText.New(String)
- uid: ASE_Assignment.WriteText.#ctor*
name: WriteText
href: api/ASE_Assignment.WriteText.html#ASE_Assignment_WriteText__ctor_
commentId: Overload:ASE_Assignment.WriteText.#ctor
isSpec: "True"
name.vb: New
fullName: ASE_Assignment.WriteText.WriteText
fullName.vb: ASE_Assignment.WriteText.New
nameWithType: WriteText.WriteText
nameWithType.vb: WriteText.New
- uid: ASE_Assignment.WriteText.CheckParameters(System.String[])
name: CheckParameters(string[])
href: api/ASE_Assignment.WriteText.html#ASE_Assignment_WriteText_CheckParameters_System_String___
commentId: M:ASE_Assignment.WriteText.CheckParameters(System.String[])
name.vb: CheckParameters(String())
fullName: ASE_Assignment.WriteText.CheckParameters(string[])
fullName.vb: ASE_Assignment.WriteText.CheckParameters(String())
nameWithType: WriteText.CheckParameters(string[])
nameWithType.vb: WriteText.CheckParameters(String())
- uid: ASE_Assignment.WriteText.CheckParameters*
name: CheckParameters
href: api/ASE_Assignment.WriteText.html#ASE_Assignment_WriteText_CheckParameters_
commentId: Overload:ASE_Assignment.WriteText.CheckParameters
isSpec: "True"
fullName: ASE_Assignment.WriteText.CheckParameters
nameWithType: WriteText.CheckParameters
- uid: ASE_Assignment.WriteText.Execute
name: Execute()
href: api/ASE_Assignment.WriteText.html#ASE_Assignment_WriteText_Execute
commentId: M:ASE_Assignment.WriteText.Execute
fullName: ASE_Assignment.WriteText.Execute()
nameWithType: WriteText.Execute()