New to Telerik UI for WPFStart a free 30-day trial

Interface used to store container information.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public interface IValuesContainer

Properties

Gets the count of the elements in the container.

C#
int Count { get; }

Methods

Returns the index of the element that reaches the given value.

C#
int GetIndex(double value)
Parameters:valuedouble

The value that needs to be reached.

Returns:

int

The index of the item that reached the given value.

Gets or sets the value that has built up for the items up to a given end index.

C#
double GetValue(int endIndex)
Parameters:endIndexint

The index of the item for which to return the cumulative value.

Returns:

double

The cumulative value for all items up to and including a given index.