The following tables list the members exposed by RefRange.
Name | Description | |
---|---|---|
RefRange Constructor | Initializes a new RefRange |
Name | Description | |
---|---|---|
from | The start of the range, not normalized, inclusive. | |
normalizedFrom | The normalized start of the range, inclusive. | |
normalizedTo | The normalized end of the range, inclusive. | |
to | The end of the range, not normalized, inclusive. |
Name | Description | |
---|---|---|
AbsoluteName | Overridden. The fully qualified unique name for the referenced element. Read Only.
The AbsoluteName for a Range is from.AbsoluteName + ":" + to.AbsoluteName | |
BaseParent | Overridden. The Parent reference of this referenced element. Used to navigate the element hierarchy. If this referenced element is the root element, Parent returns null. Read Only.
The Parent of a Range is this.from | |
Context | Returns a context for the Reference. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
ElementName | Overridden. The unqualified name of this referenced element. Used to construct the fully qualified name by the AbsoluteName method. Read Only.
The ElementName for a Range is from.ElementName + ":" + to.ElementName | |
Formula | The ICalculationFormula, if any, associated with this Reference. If this reference can not contain a formula then null is returned. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
FromBase | Return the From reference as a Refbase. | |
FromRef | Return the From reference as a ICalculationReference. | |
HasAbsoluteIndex | True indicates that the reference was constructed with a relative index. Read Only. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
HasRelativeIndex | Overridden. True indicates that the reference was constructed with a relative index. Read Only.
The HasRelativeIndex for a Range is from.HasRelativeIndex | |
HasScopeAll | True indicates that the reference was constructed with a scope all index. Read Only. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
IsAnchored | Returns true if this reference is anchored. An anchored reference is a direct reference to an element. An unanchored reference is an indirect reference. An indirect reference stores context dependent properties such as the relative name used to create the reference. Read Only. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
IsDataReference | Overridden. Returns true if this reference is a data reference. A data reference contains a value, such as a Grid Cell or a Grid SummaryValue. Many referenced elements, such as a Grid Column or a Grid Band, do not reference a value. Read Only.
A Range is always a Data Reference. | |
IsDisposedReference | True indicates that the reference was disposed. Read Only. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
IsEnumerable | Overridden. Returns true. A range is enumerable. | |
IsRange | Overridden. Returns true. This reference is a Range Reference. Read Only. | |
NormalizedAbsoluteName | Overridden. Returns the normalized absolute name. Calculation engine makes use normalized absolute names of references to compare two references and search for references. This property should return the absolute name with case insensitive parts of the absolute names converted to lower case. | |
NormalizedFromBase | Return the Normalized From reference as a Refbase. | |
NormalizedFromRef | Return the normalized From reference as a ICalculationReference. | |
NormalizedToBase | Return the normalized To reference as a RefBase. | |
NormalizedToRef | Return the normalized To reference as a ICalculationReference. | |
Parent | The RefBase Parent reference of this referenced element. Used to navigate the element hierarchy. If this referenced element is the root element, BaseParent returns null. Read Only. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
ParsedReference | Gets or Sets the parsed representation of this reference. This returns the absolute reference name. Use RelativeReference to get the parsed representation of the string used to create this reference if this reference is UnAnchored. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
RecalcDeferred | Flag used by the calculation engine to manage the recalculation network. Denotes the reference is visible. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
RecalcVisible | Flag used by the calculation engine to manage the recalculation network. Denotes the reference is visible. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
References | Overridden. Return a collection of references if this Reference is enumerable. An exception is thrown if this reference is not enumerable.
A Range returns a RefRangeCollection. | |
RelativeReference | Gets or Sets the parsed representation of the string used to create this reference if this reference is UnAnchored. Use AbsoluteReference to get the parsed representation of the anchored reference. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
ShouldFormulaEditorIncludeIndex | Gets the value indicating whether the formula editor should include default indexes after this reference's address when enumerable references are used where a single value is expected. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
ToBase | Return the To reference as a Refbase. | |
ToRef | Return the To reference as a ICalculationReference. | |
Value | The CalculationValue, if any, associated with this Reference. If this reference does not contain a Value then a CalculationErrorValue is returned. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
WrappedReference | Returns the indirect reference of an UnAnchored reference. Read only. (Inherited from Infragistics.Calculations.Engine.RefBase) |
Name | Description | |
---|---|---|
Contains | Returns true if targetRP is contained in this Range. | |
ContainsReference | Overridden. Returns true if this Range contains inReference | |
CreateRange | Create a Range reference relative to this reference. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
CreateReference | Create a new reference relative to this reference. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
Equals | Overriden. Default implementation returns true if the normalized absolute names of this reference and the passed in reference match. These objects are going to be added to data structure that make use of GetHashCode and Equals methods. What this means is that the normalized absolute name must not change throughout the lifetime of this instance. If it does change then the overriding class must override this method and return a hash code based on some other immutable property of the instance. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
FindAll | Overridden. Returns the named reference relative to this reference with scope "All"
This always throws an exception. This method should never be called on a Range because a Range is never created by BuildReference | |
FindItem | Overloaded. Overridden. Returns the named reference relative to this reference.
This always throws an exception. This method should never be called on a Range because a Range is never created by BuildReference | |
FindParent | Returns a reference to this elements Parent. Some Reference implementations (RefColumn) override this to return something different than BaseParent when handling ".." (Inherited from Infragistics.Calculations.Engine.RefBase) | |
FindSummaryItem | Overridden. Returns the named SummaryItem reference relative to this reference.
This always throws an exception. This method should never be called on a Range because a Range is never created by BuildReference | |
GetChildReferences | Returns the child references of the reference. This method can return null. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
GetEnumerator | Returns an Enumerator over the Range. | |
GetHashCode | Overridden. Default implementation returns the hash code of the normalized absolute name. These objects are going to be added to data structure that make use of GetHashCode and Equals methods. What this means is that the normalized absolute name must not change throughout the lifetime of this instance. If it does change then the overriding class must override this method and return a hash code based on some other immutable property of the instance. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
IsSiblingReference | Determines whether the given reference is a sibling of this reference (Inherited from Infragistics.Calculations.Engine.RefBase) | |
IsSubsetReference | Returns true if inReference is a proper subset of this reference (Inherited from Infragistics.Calculations.Engine.RefBase) | |
MarkRelativeIndices | Overridden. For each reference tuple in this reference that has a relative index, mark the corresponding tuple in inReference. | |
ResolveReference | Overridden. Resolves a reference relative to this reference. For example, if this reference is a reference to a row, and inReference is a reference to a column, the resolved reference is the cell reference that is the intersection of this row and the input column.
ResolveReference for a Range is from.ResolveReference | |
ScopedReferences | Overridden. Returns a ICalculationReferenceCollection for enumerable references constrained to the specified reference.
A Range returns a RefRangeCollection. | |
ToString | Returns a string representation of the range including the class type as well as the to and from reference. |
Name | Description | |
---|---|---|
BuildReference | Constructs a reference relative to this reference by walking all the elements of the specified parsed reference. If forceDataRef is true, then any IsDataReference references are forced to resolve to a specific data item when an incomplete identifier is specified. RefLoop is used to iterate over the specified parsed reference.
This method must be overridden by the Root reference object to deal with external or root references. The Root referece object must advance past the optional control name in a Fully Qualified Reference before calling RefLoop (Inherited from Infragistics.Calculations.Engine.RefBase) | |
CreateParsedReference | Overridden. Used to create a new RefParser for the reference. | |
FindRoot | Returns the Root reference of a reference hierarchy. The root reference is used to resolve the fully qualifed form of a reference. Note: Must be overridden by the Root reference to return "this". (Inherited from Infragistics.Calculations.Engine.RefBase) | |
RefLoop | Constructs a reference relative to the specified starting reference by walking the specified RefTuple enumerator. For each RefTuple, the next "current" reference is constucted by calling the Find method based on the scope of the RefTuple. If forceDataRef is true, then any IsDataReference references are forced to resolve to a specific data item when an incomplete identifier is specified. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
Validate | Validates the Range. This implementation requires that a Range is constrained to the last tuple in the Reference Path. |