Class RangeCollection
Inheritance
System.Object
RangeCollection
Assembly: Syncfusion.Gauge.Windows.dll
public class RangeCollection : CollectionBase
Constructors
Constructor for Rangecollection
Declaration
public RangeCollection(RadialGauge sender)
Parameters
Properties
Gets the index of for the Range
Declaration
public Range this[int index] { get; }
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
Property Value
Methods
Adds the range type to the list
Declaration
public int Add(Range itemType)
Parameters
| Type |
Name |
Description |
| Range |
itemType |
|
Returns
Returns whether the list contains the range type
Declaration
public bool Contains(Range itemType)
Parameters
| Type |
Name |
Description |
| Range |
itemType |
|
Returns
searches the name in the list
Declaration
public Range FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
Returns the index of the range type
Declaration
public int IndexOf(Range itemType)
Parameters
| Type |
Name |
Description |
| Range |
itemType |
|
Returns
Inserts teh range type into the list
Declaration
public void Insert(int index, Range itemType)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| Range |
itemType |
|
Overrides the clear method
Declaration
protected override void OnClear()
Overrides the oninsert method
Declaration
protected override void OnInsert(int index, object value)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| System.Object |
value |
|
overrides the onremove method
Declaration
protected override void OnRemove(int index, object value)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| System.Object |
value |
|
Removes the type from the list
Declaration
public void Remove(Range itemType)
Parameters
| Type |
Name |
Description |
| Range |
itemType |
|