The following tables list the members exposed by RefUnAnchored.
Name | Description | |
---|---|---|
RefUnAnchored Constructor | Constructor takes a base reference. |
Name | Description | |
---|---|---|
baseRef | The RefBase being wrapped. | |
relativeRP | The parsed form of the reference string used to create the reference. |
Name | Description | |
---|---|---|
AbsoluteName | Overridden. The fully qualified unique name for the referenced element. Read Only. | |
BaseParent | Overridden. 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. | |
Context | Overridden. Returns a context for the Reference. | |
ElementName | Overridden. The unqualified name of this referenced element. Used to construct the fully qualified name by the AbsoluteName method. Read Only.
RefUnAnchored forwards this to the base reference. | |
Formula | Overridden. The ICalculationFormula, if any, associated with this Reference. If this reference can not contain a formula then null is returned.
RefUnAnchored forwards this to the base reference. | |
HasAbsoluteIndex | Overridden. True indicates that the reference was constructed with a absolute index. Read Only.
RefUnAnchored uses the relative rp. | |
HasRelativeIndex | Overridden. True indicates that the reference was constructed with a relative index. Read Only.
RefUnAnchored uses the relative rp. | |
HasScopeAll | Overridden. True indicates that the reference was constructed with a scope all index. Read Only. | |
IsAnchored | Overridden. 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.
RefUnAnchored always returns false. | |
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.
RefUnAnchored forwards this to the base reference. | |
IsDisposedReference | Overridden. True indicates that the reference was disposed. Read Only. | |
IsEnumerable | Overridden. Returns true if this reference is enumerable.
RefUnAnchored forwards this to the base reference. | |
IsRange | Overridden. Returns true if this reference is a Range Reference. Read Only.
RefUnAnchored forwards this to the base reference. | |
IsUnQualifiedReference | Returns true if the relative reference is unqualified. Read Only. | |
NormalizedAbsoluteName | Returns the normalized absolute name. Calculation engine makes use of 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. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
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 | Overridden. 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.
RefUnAnchored returns a reference constructed from merging the relative reference into the base reference. | |
RecalcDeferred | Overridden. True indicates that recalculating reference's formula can deferred until it become visible. | |
RecalcVisible | Overridden. Flag used by the calculation engine to manage the recalculation network. Denotes the reference is visible.
RefUnAnchored forwards this to the base reference. | |
References | Overridden. Return a collection of references if this Reference is enumerable. An exception is thrown if this reference is not enumerable.
RefUnAnchored returns the baseRef enumeration scoped to the merged reference. | |
RelativeReference | Overridden. 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.
RefUnAnchored returns the relative reference. When setting the relative reference, the merge reference is constructed by merging the relative reference into the base reference. | |
ShouldFormulaEditorIncludeIndex | Overridden. 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. | |
Value | Overridden. The CalculationValue, if any, associated with this Reference. If this reference does not contain a Value then a CalculationErrorValue is returned.
RefUnAnchored forwards this to the base reference. | |
WrappedReference | Overridden. Returns the indirect reference of an UnAnchored reference. Read only.
RefUnAnchored forwards this to the base reference. |
Name | Description | |
---|---|---|
ContainsReference | Overridden. Returns true if this reference contains inReference
RefUnAnchored forwards this to the base reference. | |
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. | |
FindAll | Overridden. Returns the named reference relative to this reference with scope "ALL".
RefUnAnchored forwards this to the base reference. | |
FindItem | Overloaded. Overridden. Returns the named reference relative to this reference.
RefUnAnchored forwards this to the base reference. | |
FindParent | Overridden. Returns a reference to this elements Parent.
RefUnAnchored forwards this to the base reference. | |
FindSummaryItem | Overridden. Returns the named SummaryItem reference relative to this reference.
RefUnAnchored forwards this to the base reference. | |
GetChildReferences | Returns the child references of the reference. This method can return null. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
GetHashCode | Overridden. | |
IsSiblingReference | Overridden. Determines whether the given reference is a sibling of this reference | |
IsSubsetReference | Overridden. Returns true if inReference is a proper subset of this reference | |
MarkRelativeIndices | For each reference tuple in this reference that has a relative index, mark the corresponding tuple in inReference. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
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.
RefUnAnchored forwards this to the base reference. | |
ScopedReferences | Overridden. Returns a ICalculationReferenceCollection for enumerable references constrained to the specified reference.
RefUnAnchored forwards this to the base reference. | |
ToString | Returns a string representation of the object. |
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 | Used to create a new RefParser for the reference. (Inherited from Infragistics.Calculations.Engine.RefBase) | |
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) |