Class SvgPathSegmentList
Inheritance
System.Object
SvgPathSegmentList
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.Svg.Pathing
Assembly: TelerikCommon.dll
Syntax
public sealed class SvgPathSegmentList : IList<SvgPathSegment>, ICollection<SvgPathSegment>, IEnumerable<SvgPathSegment>, IEnumerable, ICloneable
Constructors
SvgPathSegmentList()
Declaration
public SvgPathSegmentList()
Properties
Count
Declaration
public int Count { get; }
Property Value
System.Int32
|
Implements
System.Collections.Generic.ICollection<T>.Count
First
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.IsReadOnly
Item[Int32]
Declaration
public SvgPathSegment this[int index] { get; set; }
Parameters
System.Int32
index
|
Property Value
SvgPathSegment
|
Implements
System.Collections.Generic.IList<T>.Item[System.Int32]
Last
Owner
Methods
Add(SvgPathSegment)
Declaration
public void Add(SvgPathSegment item)
Parameters
SvgPathSegment
item
|
Implements
System.Collections.Generic.ICollection<T>.Add(T)
Clear()
Declaration
public void Clear()
Implements
System.Collections.Generic.ICollection<T>.Clear()
Clone()
Declaration
public object Clone()
Returns
System.Object
|
Implements
System.ICloneable.Clone()
Contains(SvgPathSegment)
Declaration
public bool Contains(SvgPathSegment item)
Parameters
SvgPathSegment
item
|
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.Contains(T)
CopyTo(SvgPathSegment[], Int32)
Declaration
public void CopyTo(SvgPathSegment[] array, int arrayIndex)
Parameters
SvgPathSegment[]
array
|
System.Int32
arrayIndex
|
Implements
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)
GetEnumerator()
Declaration
public IEnumerator<SvgPathSegment> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<SvgPathSegment>
|
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
IndexOf(SvgPathSegment)
Declaration
public int IndexOf(SvgPathSegment item)
Parameters
SvgPathSegment
item
|
Returns
System.Int32
|
Implements
System.Collections.Generic.IList<T>.IndexOf(T)
Insert(Int32, SvgPathSegment)
Declaration
public void Insert(int index, SvgPathSegment item)
Parameters
System.Int32
index
|
SvgPathSegment
item
|
Implements
System.Collections.Generic.IList<T>.Insert(System.Int32, T)
Remove(SvgPathSegment)
Declaration
public bool Remove(SvgPathSegment item)
Parameters
SvgPathSegment
item
|
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.Remove(T)
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
System.Int32
index
|
Implements
System.Collections.Generic.IList<T>.RemoveAt(System.Int32)
ToString()
Declaration
public override string ToString()
Returns
System.String
|
Overrides
System.Object.ToString()
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|
Implements
System.Collections.IEnumerable.GetEnumerator()