Search Results for

    Show / Hide Table of Contents

    Class ControlPointCollection

    Represents a collection of machine parameters that describe the planned treatment beam.

    Inheritance
    System.Object
    SerializableObject
    ControlPointCollection
    Implements
    System.Xml.Serialization.IXmlSerializable
    System.Collections.Generic.IEnumerable<ControlPoint>
    System.Collections.IEnumerable
    Inherited Members
    SerializableObject.GetSchema()
    SerializableObject.ReadXml(XmlReader)
    SerializableObject.ClearSerializationHistory()
    System.Object.ToString()
    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: VMS.TPS.Common.Model.API
    Assembly: VMS.TPS.Common.Model.API.dll
    Syntax
    public class ControlPointCollection : SerializableObject, IXmlSerializable, IEnumerable<ControlPoint>, IEnumerable

    Properties

    Count

    The number of control points in the collection.

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    System.Int32

    Item[Int32]

    Gets the specified ControlPoint from the collection.

    Declaration
    public ControlPoint this[int index] { get; }
    Parameters
    Type Name Description
    System.Int32 index

    Zero based index of the ControlPoint to retrieve.

    Property Value
    Type Description
    ControlPoint

    ControlPoint at the given index.

    Methods

    GetEnumerator()

    Retrieves enumerator for ControlPoints in the collection.

    Declaration
    public IEnumerator<ControlPoint> GetEnumerator()
    Returns
    Type Description
    System.Collections.Generic.IEnumerator<ControlPoint>

    Enumerator for ControlPoints in the collection.

    WriteXml(XmlWriter)

    Converts an object into its XML representation. For more information on how to serialize an object into an XML document, see System.Xml.Serialization.XmlSerializer.

    Declaration
    public override void WriteXml(XmlWriter writer)
    Parameters
    Type Name Description
    System.Xml.XmlWriter writer

    The System.Xml.XmlWriter stream, to which the object is serialized.

    Overrides
    SerializableObject.WriteXml(XmlWriter)

    Explicit Interface Implementations

    IEnumerable.GetEnumerator()

    Declaration
    IEnumerator IEnumerable.GetEnumerator()
    Returns
    Type Description
    System.Collections.IEnumerator

    Implements

    System.Xml.Serialization.IXmlSerializable
    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    In This Article
    Back to top