Show / Hide Table of Contents

Class PatientTemplatesInfo

Represents template information about patient templates.

Inheritance
System.Object
PatientTemplatesInfo
Inherited Members
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: ClearCheck.esapi.Api
Assembly: cs.temp.dll.dll
Syntax
public class PatientTemplatesInfo

Properties

DoseConstraintTemplates

Gets a list of dose constraint templates.

Declaration
public List<TemplateInfo> DoseConstraintTemplates { get; }
Property Value
Type Description
System.Collections.Generic.List<TemplateInfo>

PlanCheckTemplates

Gets a list of plan check templates.

Declaration
public List<TemplateInfo> PlanCheckTemplates { get; }
Property Value
Type Description
System.Collections.Generic.List<TemplateInfo>

SelectedDoseConstraintTemplate

Gets the selected dose constraint template.

Declaration
public TemplateInfo SelectedDoseConstraintTemplate { get; }
Property Value
Type Description
TemplateInfo

SelectedPlanCheckTemplate

Gets the selected plan check template.

Declaration
public TemplateInfo SelectedPlanCheckTemplate { get; }
Property Value
Type Description
TemplateInfo

SelectedReportTemplate

Gets name of the selected report template.

Declaration
public string SelectedReportTemplate { get; }
Property Value
Type Description
System.String

SelectedStructureCheckTemplate

Gets the selected structure check template.

Declaration
public TemplateInfo SelectedStructureCheckTemplate { get; }
Property Value
Type Description
TemplateInfo

StructureCheckTemplates

Gets a list of structure check templates.

Declaration
public List<TemplateInfo> StructureCheckTemplates { get; }
Property Value
Type Description
System.Collections.Generic.List<TemplateInfo>
Back to top