Interface IValuesContainer
Interface used to store container information.
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public interface IValuesContainer
Properties
Count
Gets the count of the elements in the container.
Declaration
int Count { get; }
Property Value
System.Int32
|
Methods
GetIndex(Double)
Returns the index of the element that reaches the given value.
Declaration
int GetIndex(double value)
Parameters
System.Double
value
The value that needs to be reached. |
Returns
System.Int32
The index of the item that reached the given value. |
GetValue(Int32)
Gets or sets the value that has built up for the items up to a given end index.
Declaration
double GetValue(int endIndex)
Parameters
System.Int32
endIndex
The index of the item for which to return the cumulative value. |
Returns
System.Double
The cumulative value for all items up to and including a given index. |