Class NeedleCollection
Inheritance
System.Object
NeedleCollection
Assembly: Syncfusion.Gauge.Windows.dll
public class NeedleCollection : CollectionBase
Constructors
Constructor for Needlecollection
Declaration
public NeedleCollection(RadialGauge sender)
Parameters
Properties
Gets the index of for the Needle
Declaration
public Needle this[int index] { get; }
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
Property Value
Methods
Adds the Needle type to the list
Declaration
public int Add(Needle itemType)
Parameters
| Type |
Name |
Description |
| Needle |
itemType |
|
Returns
Returns whether the list contains the Needle type
Declaration
public bool Contains(Needle itemType)
Parameters
| Type |
Name |
Description |
| Needle |
itemType |
|
Returns
searches the name in the list
Declaration
public Needle FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
Returns the index of the needle type
Declaration
public int IndexOf(Needle itemType)
Parameters
| Type |
Name |
Description |
| Needle |
itemType |
|
Returns
Inserts the needle type into the list
Declaration
public void Insert(int index, Needle itemType)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| Needle |
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(Needle itemType)
Parameters
| Type |
Name |
Description |
| Needle |
itemType |
|