Struct DVHPoint
Represents a value on a Dose Volume Histogram (DVH) curve.
Implements
System.Xml.Serialization.IXmlSerializable
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: VMS.TPS.Common.Model.Types
Assembly: VMS.TPS.Common.Model.Types.dll
Syntax
public struct DVHPoint : IXmlSerializable
Constructors
DVHPoint(DoseValue, Double, String)
Constructs a DVHPoint.
Declaration
public DVHPoint(DoseValue dose, double volume, string volumeUnit)
Parameters
Type | Name | Description |
---|---|---|
DoseValue | dose | Dose value of the point. |
System.Double | volume | Volume value of the point. |
System.String | volumeUnit | Unit of volume. |
Properties
DoseValue
The dose value of the point.
Declaration
public DoseValue DoseValue { get; }
Property Value
Type | Description |
---|---|
DoseValue |
Volume
The volume value of the point.
Declaration
public double Volume { get; }
Property Value
Type | Description |
---|---|
System.Double |
VolumeUnit
The volume unit of the point.
Declaration
public string VolumeUnit { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
GetSchema()
This member is internal to the Eclipse Scripting API.
Declaration
public XmlSchema GetSchema()
Returns
Type | Description |
---|---|
System.Xml.Schema.XmlSchema | XmlSchema. |
ReadXml(XmlReader)
This member is internal to the Eclipse Scripting API.
Declaration
public void ReadXml(XmlReader reader)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlReader | reader | XmlReader. |
WriteXml(XmlWriter)
Serialization support.
Declaration
public void WriteXml(XmlWriter writer)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlWriter | writer | The System.Xml.XmlWriter stream to which the object is serialized. |
Implements
System.Xml.Serialization.IXmlSerializable