Class ScrollRangeList
A collection class containing a list of ScrollRange objects.
Implements
Inherited Members
System.Collections.Generic.List<ZedGraph.ScrollRange>.System.Collections.IList.get_Item(System.Int32)
System.Collections.Generic.List<ZedGraph.ScrollRange>.System.Collections.IList.set_Item(System.Int32, System.Object)
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public class ScrollRangeList : List<ScrollRange>, IList<ScrollRange>, ICollection<ScrollRange>, IEnumerable<ScrollRange>, IList, ICollection, IEnumerable, ICloneable
Constructors
| Improve this Doc View SourceScrollRangeList()
Default constructor for the collection class.
Declaration
public ScrollRangeList()
ScrollRangeList(ScrollRangeList)
The Copy Constructor
Declaration
public ScrollRangeList(ScrollRangeList rhs)
Parameters
Type | Name | Description |
---|---|---|
ScrollRangeList | rhs | The ScrollRangeList object from which to copy |
Properties
| Improve this Doc View SourceItem[Int32]
Indexer to access the specified ScrollRange object by its ordinal position in the list.
Declaration
public ScrollRange this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The ordinal position (zero-based) of the ScrollRange object to be accessed. |
Property Value
Type | Description |
---|---|
ScrollRange | A ScrollRange object instance |
Methods
| Improve this Doc View SourceClone()
Typesafe, deep-copy clone method.
Declaration
public ScrollRangeList Clone()
Returns
Type | Description |
---|---|
ScrollRangeList | A new, independent copy of this class |
Explicit Interface Implementations
| Improve this Doc View SourceICloneable.Clone()
Implement the ICloneable interface in a typesafe manner by just calling the typed version of Clone()
Declaration
object ICloneable.Clone()
Returns
Type | Description |
---|---|
Object | A deep copy of this object |