-
Notifications
You must be signed in to change notification settings - Fork 0
/
FarPoint.CalcEngine.xml
12079 lines (12043 loc) · 498 KB
/
FarPoint.CalcEngine.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>FarPoint.CalcEngine</name>
</assembly>
<members>
<member name="T:FarPoint.CalcEngine.CalcArray">
<summary>
Represents an array of constants during the evaluation of
a formula.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcArray.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value at the specified position in the array.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>Value at the specified position</returns>
</member>
<member name="P:FarPoint.CalcEngine.CalcArray.RowCount">
<summary>
Gets the number of rows in the array.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcArray.ColumnCount">
<summary>
Gets the number of columns in the array.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcMissingArgument">
<summary>
Represents a missing argument during the evaluation of a formula.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcMissingArgument.#ctor">
<summary>
Creates a new instance of the CalcMissingArgument class.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcHelper">
<summary>
Represents the methods that are useful during function evaluations.
</summary>
</member>
<member name="F:FarPoint.CalcEngine.CalcHelper.MAX_ARGS">
<summary>
Maximum number of arguments for a function.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcHelper.ArgumentExists(System.Object[],System.Int32)">
<summary>
Determines if the argument list contains the specified argument and the specified
argument is not an instance of CalcMissingArgument.
</summary>
<param name="args">Argument list</param>
<param name="index">Index</param>
<returns>true if specified argument was not omitted, otherwise false</returns>
</member>
<member name="T:FarPoint.CalcEngine.CalcConvert">
<summary>
Represents the converting of a value to a specified data type.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.IsError(System.Object)">
<summary>
Determines whether the specified value is a calculation error.
</summary>
<param name="value">Value of which to determine data type</param>
<returns>True if the value is a calculation error; otherwise false</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.IsNumber(System.Object)">
<summary>
Determines whether the specified value is a numeric data type.
</summary>
<param name="value">Value of which to determine data type</param>
<returns>True if the value is numeric; otherwise false</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToResult(System.Double)">
<summary>
Converts a double to an object.
</summary>
<param name="value">Value to convert</param>
<returns>Object value equivalent to the specified value</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToBool(System.Object)">
<summary>
Converts the specified value to a boolean value.
</summary>
<param name="value">Value to convert</param>
<returns>Boolean value equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToInt(System.Object)">
<summary>
Converts the specified value to a 32-bit signed integer.
</summary>
<param name="value">Value to convert</param>
<returns>32-bit signed integer equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToDouble(System.Object)">
<summary>
Converts the specified value to a double-precision, floating-point number.
</summary>
<param name="value">Value to convert</param>
<returns>Double-precision, floating-point number equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToString(System.Object)">
<summary>
Converts the specified value to a string representation.
</summary>
<param name="value">Value to convert</param>
<returns>String representation of the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToDateTime(System.Object)">
<summary>
Converts the specified value to a DateTime value.
</summary>
<param name="value">Value to convert</param>
<returns>DateTime value equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToTimeSpan(System.Object)">
<summary>
Converts the specified value to a TimeSpan value.
</summary>
<param name="value">Value to convert</param>
<returns>TimeSpan value equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcConvert.ToArray(System.Object)">
<summary>
Converts the specified value to a CalcArray.
</summary>
<param name="value">Value to convert</param>
<returns>Double value equivalent to the specified value</returns>
<exception cref="T:System.InvalidCastException">Value cannot be converted.</exception>
</member>
<member name="T:FarPoint.CalcEngine.CalcConvert.ConcreteArrayWrappingScalar">
<summary>
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcConvert.ConcreteArrayWrappingReference">
<summary>
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcError">
<summary>
Represents calculation errors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcError.#ctor(System.String)">
<summary>
Creates a new instance of the CalcError class.
</summary>
<param name="text">Text representation of the error</param>
</member>
<member name="M:FarPoint.CalcEngine.CalcError.ToString">
<summary>
Returns a string representation of the error.
</summary>
<returns>String representation of the error</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcError.Parse(System.String)">
<summary>
Converts the string to an error.
</summary>
<param name="s">String to be parsed</param>
<returns>Error represented by the string</returns>
<exception cref="T:System.FormatException">String does not represent an error.</exception>
</member>
<member name="M:FarPoint.CalcEngine.CalcError.TryParse(System.String,FarPoint.CalcEngine.CalcError@)">
<summary>
Converts a string to an error.
</summary>
<param name="s">String to be parsed</param>
<param name="error">Error represented by the string</param>
<returns>True if the string is converted successfully; false otherwise</returns>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.DivideByZero">
<summary>
Occurs when a formula divides by zero.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.NotAvailable">
<summary>
Occurs when a value is not available.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Name">
<summary>
Occurs when an unrecognized name is encountered.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Null">
<summary>
Occurs when you specify an intersection of two intersections
that do not intersect.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Number">
<summary>
Occurs when a problem occurs with a number in a formula.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Reference">
<summary>
Occurs when a cell reference is invalid.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcError.Value">
<summary>
Occurs when the wrong type of argument or operand is used.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CalcErrorConverter">
<summary>
Converts CalcError objects to and from other data types.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcErrorConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines whether the specified type can be converted to a CalcError object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="sourceType">Type</param>
<returns>True if sourceType is String; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcErrorConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
<summary>
Converts a string to a new CalcError object.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<returns>New CalcError object</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcErrorConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
<summary>
Determines whether a CalcError object can be converted to the specified type.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="destinationType">Type</param>
<returns>True if a CalcError object can be converted to the specified type; false otherwise</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcErrorConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
<summary>
Converts the CalcError object to a string.
</summary>
<param name="context">ITypeDescriptorContext</param>
<param name="culture">CultureInfo</param>
<param name="value">object</param>
<param name="destinationType">Type</param>
<returns>String representation of a CalcError object</returns>
</member>
<member name="T:FarPoint.CalcEngine.CalcReference">
<summary>
Represents a cell or range reference during the evaluation of
a formula.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CalcReference.GetValue(System.Int32,System.Int32)">
<summary>
Gets the value at the specified position in the cell or range reference.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>Value at the specified position</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcReference.IsSubtotal(System.Int32,System.Int32)">
<summary>
Determines whether the value at the specified position is a subtotal.
</summary>
<param name="row">Row index</param>
<param name="column">Column index</param>
<returns>True if the value at the specified position is a subtotal; otherwise false</returns>
</member>
<member name="M:FarPoint.CalcEngine.CalcReference.GetSource">
<summary>
Returns a CalcReference to the entire sheet.
</summary>
<returns></returns>
</member>
<member name="P:FarPoint.CalcEngine.CalcReference.Row">
<summary>
Gets the index of the first row in the cell or range reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcReference.Column">
<summary>
Gets the index of the first column in the cell or range reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcReference.RowCount">
<summary>
Gets the number of rows in the cell or range reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CalcReference.ColumnCount">
<summary>
Gets the number of columns in the cell or range reference.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.Expression">
<summary>
Represents the abstract class from which all expression types derive.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ParenthesesExpression">
<summary>
Represents an expression type for parentheses surrounding a specified expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ParenthesesExpression.#ctor(FarPoint.CalcEngine.Expression)">
<summary>
Creates an new expression with parentheses surrounding a specified expression.
</summary>
<param name="arg">Expression inside the parentheses</param>
<exception cref="T:System.ArgumentNullException">arg is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.ParenthesesExpression.Arg">
<summary>
Gets the expression inside the parentheses.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ConstantExpression">
<summary>
Represents the abstract class from which all constant value expression types derive.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BooleanExpression">
<summary>
Represents an expression type with a boolean constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BooleanExpression.#ctor(System.Boolean)">
<summary>
Creates a new expression with a boolean constant value.
</summary>
<param name="value">Boolean value</param>
</member>
<member name="P:FarPoint.CalcEngine.BooleanExpression.Value">
<summary>
Gets the boolean value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BooleanExpression.BooleanValue">
<summary>
Gets the boolean value as a boolean.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DoubleExpression">
<summary>
Represents an expression with a double constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DoubleExpression.#ctor(System.Double)">
<summary>
Creates a new expression with a double constant value.
</summary>
<param name="value">Double value</param>
</member>
<member name="P:FarPoint.CalcEngine.DoubleExpression.Value">
<summary>
Gets the double value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.DoubleExpression.DoubleValue">
<summary>
Gets the double value as a double.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.StringExpression">
<summary>
Represents an expression with a string constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.StringExpression.#ctor(System.String)">
<summary>
Creates a new expression with a string constant value.
</summary>
<param name="value">String value</param>
<exception cref="T:System.ArgumentNullException">value is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.StringExpression.Value">
<summary>
Gets the string value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.StringExpression.StringValue">
<summary>
Gets the string value as a string.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ErrorExpression">
<summary>
Represents an expression with an error constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErrorExpression.#ctor(FarPoint.CalcEngine.CalcError)">
<summary>
Creates a new expression with an error constant value.
</summary>
<param name="value">Error value</param>
<exception cref="T:System.ArgumentNullException">value is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.ErrorExpression.Value">
<summary>
Gets the error value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ErrorExpression.ErrorValue">
<summary>
Gets the error value as a CalcError object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ArrayExpression">
<summary>
Represents an expression with an array of constant values as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ArrayExpression.#ctor(System.Object[0:,0:])">
<summary>
Creates an expression with an array of constant values.
</summary>
<param name="values">Array of constant values</param>
<exception cref="T:System.ArgumentNullException">values is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.ArrayExpression.Value">
<summary>
Gets the array value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ArrayExpression.ArrayValue">
<summary>
Gets the array value as a CalcArray object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ArrayExpression.ConcreteArray">
<summary>
Represents a concrete implementation of a CalcArray object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.MissingArgumentExpression">
<summary>
Represents an expression with a missing argument constant value as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.MissingArgumentExpression.#ctor">
<summary>
Creates a new expression with a missing argument constant value.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MissingArgumentExpression.Value">
<summary>
Gets the missing argument value as an object.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.MissingArgumentExpression.MissingArgumentValue">
<summary>
Gets the missing argument value as a CalcMissingArgument object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ReferenceExpression">
<summary>
Represents the abstract class from which all reference expression types derive.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.Row">
<summary>
Gets the starting row coordinate of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.Column">
<summary>
Gets the starting column coordinate of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.RowCount">
<summary>
Gets the number of rows in the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.ColumnCount">
<summary>
Gets the number of columns in the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.RowRelative">
<summary>
Determines whether the row coordinates are relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ReferenceExpression.ColumnRelative">
<summary>
Determines whether the column coordinates are relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CellExpression">
<summary>
Represents an expression with a cell reference as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CellExpression.#ctor(System.Int32,System.Int32)">
<summary>
Creates a new expression with a cell reference with absolute coordinates.
</summary>
<param name="row">Row coordinate of cell</param>
<param name="column">Column coordinate of cell</param>
</member>
<member name="M:FarPoint.CalcEngine.CellExpression.#ctor(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new expression with a cell reference.
</summary>
<param name="row">Row coordinate of cell</param>
<param name="column">Column coordinate of cell</param>
<param name="rowRelative">Whether row coordinate is relative</param>
<param name="columnRelative">Whether the column coordinate is relative</param>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.Row">
<summary>
Gets the row index of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.Column">
<summary>
Gets the column index of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.RowCount">
<summary>
Gets the number of rows (1 in this implementation).
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.ColumnCount">
<summary>
Gets the number of columns (1 in this implementation).
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.RowRelative">
<summary>
Determines whether the row coordinate is relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.CellExpression.ColumnRelative">
<summary>
Determines whether the column coordinate is relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RangeExpression">
<summary>
Represents an expression with a range reference as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RangeExpression.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new expression with a range reference expression with absolute coordinates.
</summary>
<param name="row">Starting row coordinate of the range</param>
<param name="column">Starting column coordinate of the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
</member>
<member name="M:FarPoint.CalcEngine.RangeExpression.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new expression representing a range reference expression.
</summary>
<param name="row">Starting row coordinate of the range</param>
<param name="column">Starting column coordinate of the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
<param name="rowRelative">Whether the row coordinates are relative or absolute</param>
<param name="columnRelative">Whether the column coordinates are relative or absolute</param>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.Row">
<summary>
Gets the starting row coordinate of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.Column">
<summary>
Gets the starting column coordinate of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.RowCount">
<summary>
Gets the number of rows in the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.ColumnCount">
<summary>
Gets the number of columns in the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.RowRelative">
<summary>
Determines whether the row coordinates are relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.RangeExpression.ColumnRelative">
<summary>
Determines whether the column coordinates are relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalReferenceExpression">
<summary>
Represents the abstract class from which all external reference expression types derive.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.Source">
<summary>
Gets the source of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.Row">
<summary>
Gets the starting row coordinate of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.Column">
<summary>
Gets the starting column coordinate of the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.RowCount">
<summary>
Gets the number of rows in the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.ColumnCount">
<summary>
Gets the number of columns in the reference.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.RowRelative">
<summary>
Determines whether the row coordinates are relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalReferenceExpression.ColumnRelative">
<summary>
Determines whether the column coordinates are relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalCellExpression">
<summary>
Represents an expression with an external cell reference as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalCellExpression.#ctor(System.Object,System.Int32,System.Int32)">
<summary>
Creates a new expression with an external cell reference with absolute coordinates.
</summary>
<param name="source">Source of the cell</param>
<param name="row">Row coordinate of the cell</param>
<param name="column">Column coordinate of the cell</param>
</member>
<member name="M:FarPoint.CalcEngine.ExternalCellExpression.#ctor(System.Object,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new expression representing an external cell reference.
</summary>
<param name="source">Source of the cell</param>
<param name="row">Row coordinate of the cell</param>
<param name="column">Column coordinate of the cell</param>
<param name="rowRelative">Whether the row coordinate is relative</param>
<param name="columnRelative">Whether the column coordinate is relative</param>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.Source">
<summary>
Gets the source of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.Row">
<summary>
Gets the row index of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.Column">
<summary>
Gets the column index of the cell.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.RowCount">
<summary>
Gets the number of rows (1 in this implementation).
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.ColumnCount">
<summary>
Gets the number of columns (1 in this implementation).
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.RowRelative">
<summary>
Determines whether the row coordinate is relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalCellExpression.ColumnRelative">
<summary>
Determines whether the column coordinate is relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalRangeExpression">
<summary>
Represents an expression with an external range reference as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalRangeExpression.#ctor(System.Object,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new expression with an external range reference with absolute coordinates.
</summary>
<param name="source">Source of the range</param>
<param name="row">Starting row coordinate of the range</param>
<param name="column">Starting column coordinate of the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
</member>
<member name="M:FarPoint.CalcEngine.ExternalRangeExpression.#ctor(System.Object,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new expression representing an external range reference.
</summary>
<param name="source">Source of the range</param>
<param name="row">Starting row coordinate of the range</param>
<param name="column">Starting column coordinate of the range</param>
<param name="rowCount">Number of rows in the range</param>
<param name="columnCount">Number of columns in the range</param>
<param name="rowRelative">Whether the row coordinates are relative</param>
<param name="columnRelative">Whether the column coordinates are relative</param>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.Source">
<summary>
Gets the source of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.Row">
<summary>
Gets the starting row coordinate of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.Column">
<summary>
Gets the starting column coordinate of the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.RowCount">
<summary>
Gets the number of rows in the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.ColumnCount">
<summary>
Gets the number of columns in the range.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.RowRelative">
<summary>
Determines whether the row coordinates are relative.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.ExternalRangeExpression.ColumnRelative">
<summary>
Determines whether the column coordinates are relative.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.NameExpression">
<summary>
Represents an expression with a named variable as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.NameExpression.#ctor(System.String)">
<summary>
Creates a new expression with a named variable.
</summary>
<param name="name">Named variable</param>
<exception cref="T:System.ArgumentNullException">name is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.NameExpression.Name">
<summary>
Gets the text representation of the named variable.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.UnaryOperatorExpression">
<summary>
Represents an expression with a unary operator applied to a single operand as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.UnaryOperatorExpression.#ctor(FarPoint.CalcEngine.UnaryOperatorInfo,FarPoint.CalcEngine.Expression)">
<summary>
Creates an expression representing a unary operator applied to a single operand.
</summary>
<param name="oper">Operator</param>
<param name="arg">Operand</param>
<exception cref="T:System.ArgumentNullException">oper or arg is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.UnaryOperatorExpression.Operator">
<summary>
Gets the operator for the expression.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.UnaryOperatorExpression.Arg">
<summary>
Gets the operand for the expression.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BinaryOperatorExpression">
<summary>
Represents an expression with a binary operator applied to a pair of operands as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BinaryOperatorExpression.#ctor(FarPoint.CalcEngine.BinaryOperatorInfo,FarPoint.CalcEngine.Expression,FarPoint.CalcEngine.Expression)">
<summary>
Creates a new expression with a binary operator applied to a pair of operands.
</summary>
<param name="oper">Operator</param>
<param name="arg0">Left-side operand</param>
<param name="arg1">Right-side operand</param>
<exception cref="T:System.ArgumentNullException">oper or arg0 or arg1 is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="P:FarPoint.CalcEngine.BinaryOperatorExpression.Operator">
<summary>
Gets the operator for the expression.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BinaryOperatorExpression.Arg0">
<summary>
Gets the left-side operand for the expression.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.BinaryOperatorExpression.Arg1">
<summary>
Gets the right-side operand for the expression.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.FunctionExpression">
<summary>
Represents an expression with a function applied to a list of parameters as the expression.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.FunctionExpression.#ctor(System.String,FarPoint.CalcEngine.Expression[])">
The expression uses dynamic function binding (that is, function implementation is determined
at evaluation time). Dynamic binding is commonly used for user defined functions.
<summary>
Creates a new expression representing a function applied to a list of parameters.
</summary>
<param name="functionName">Function name</param>
<param name="args">List of parameters</param>
<exception cref="T:System.ArgumentNullException">functionName or args is a null reference (Nothing in Visual Basic)</exception>
</member>
<member name="M:FarPoint.CalcEngine.FunctionExpression.#ctor(FarPoint.CalcEngine.FunctionInfo,FarPoint.CalcEngine.Expression[])">
<summary>
Creates a new expression representing a function applied to a list of parameters.
</summary>
<param name="functionInfo">Function</param>
<param name="args">List of parameters</param>
<exception cref="T:System.ArgumentNullException">functionInfo or args is a null reference (Nothing in Visual Basic)</exception>
<exception cref="T:System.ArgumentException">functionInfo does not accept the number of parameters found in args</exception>
</member>
<member name="M:FarPoint.CalcEngine.FunctionExpression.GetArg(System.Int32)">
<summary>
Returns the specified parameter being passed to the function.
</summary>
<param name="i">Index of the parameter (or argument)</param>
<returns>Parameter</returns>
</member>
<member name="P:FarPoint.CalcEngine.FunctionExpression.FunctionName">
<summary>
Gets the name of function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FunctionExpression.Function">
If dynamic binding was used then the returned value will be null.
If static binding was used then the returned value will be non-null.
<summary>
Gets the implementation (dynamic or static function binding) of the function.
</summary>
</member>
<member name="P:FarPoint.CalcEngine.FunctionExpression.ArgCount">
<summary>
Gets the number of parameters being passed to the function.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ArrayExpressionFactory">
<summary>
Represents a means of creating ArrayExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ArrayExpressionFactory.CreateArrayExpression(System.Object[0:,0:])">
<summary>
Creates a new ArrayExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.BooleanExpressionFactory">
<summary>
Represents a means of creating BooleanExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.BooleanExpressionFactory.CreateBooleanExpression(System.Boolean)">
<summary>
Creates a new BooleanExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.DoubleExpressionFactory">
<summary>
Represents a means of creating DoubleExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.DoubleExpressionFactory.CreateDoubleExpression(System.Double)">
<summary>
Creates a new DoubleExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ErrorExpressionFactory">
<summary>
Represents a means of creating ErrorExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ErrorExpressionFactory.CreateErrorExpression(FarPoint.CalcEngine.CalcError)">
<summary>
Creates a new ErrorExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ParenthesesExpressionFactory">
<summary>
Represents a means of creating ParenthesesExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ParenthesesExpressionFactory.CreateParenthesesExpression(FarPoint.CalcEngine.Expression)">
<summary>
Creates a new ParenthesesExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.CellExpressionFactory">
<summary>
Represents a means of creating CellExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CellExpressionFactory.CreateCellExpression(System.Int32,System.Int32)">
<summary>
Creates a new CellExpression object.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.CellExpressionFactory.CreateCellExpression(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new CellExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.RangeExpressionFactory">
<summary>
Represents a means of creating RangeExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RangeExpressionFactory.CreateRangeExpression(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new RangeExpression object.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.RangeExpressionFactory.CreateRangeExpression(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new RangeExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalCellExpressionFactory">
<summary>
Represents a means of creating ExternalCellExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalCellExpressionFactory.CreateExternalCellExpression(System.Object,System.Int32,System.Int32)">
<summary>
Creates a new ExternalCellExpression object.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalCellExpressionFactory.CreateExternalCellExpression(System.Object,System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Creates a new ExternalCellExpression object.
</summary>
</member>
<member name="T:FarPoint.CalcEngine.ExternalRangeExpressionFactory">
<summary>
Represents a means of creating ExternalRangeExpression objects in
environments that do not support parameterized constructors.
</summary>
</member>
<member name="M:FarPoint.CalcEngine.ExternalRangeExpressionFactory.CreateExternalRangeExpression(System.Object,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Creates a new ExternalRangeExpression object.
</summary>
</member>