Search Results for

    Show / Hide Table of Contents

    Class IonSpotParametersCollection

    Interface for the editable proton scanning spot list.

    Inheritance
    System.Object
    SerializableObject
    IonSpotParametersCollection
    Implements
    System.Xml.Serialization.IXmlSerializable
    System.Collections.Generic.IEnumerable<IonSpotParameters>
    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 IonSpotParametersCollection : SerializableObject, IXmlSerializable, IEnumerable<IonSpotParameters>, IEnumerable

    Properties

    Count

    The number of editable scanning spots in this collection (spot list).

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

    Item[Int32]

    Gets the specified IonSpotParameters from the collection.

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

    Zero based index of the IonSpotParameters to retrieve.

    Property Value
    Type Description
    IonSpotParameters

    IonSpotParameters at the given index.

    Methods

    GetEnumerator()

    Retrieves enumerator for IonSpotParameterss in the collection.

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

    Enumerator for IonSpotParameterss 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