Interface
IValuesContainer

Interface used to store container information.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

cs-api-definition
public interface IValuesContainer

Properties

Count

Gets the count of the elements in the container.

Declaration

cs-api-definition
int Count { get; }

Property Value

int

Methods

GetIndex(double)

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

Declaration

cs-api-definition
int GetIndex(double value)

Parameters

value

double

The value that needs to be reached.

Returns

int

The index of the item that reached the given value.

GetValue(int)

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

Declaration

cs-api-definition
double GetValue(int endIndex)

Parameters

endIndex

int

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.