Show / Hide Table of Contents

Class FormTemplate

Wraps a job form template.

Inheritance
System.Object
JTObject
FormTemplate
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: Moraware.JobTrackerAPI5
Assembly: JobTrackerAPI5.dll
Syntax
public class FormTemplate : JTObject

Properties

FormFields

List of fields that make up the form.

Declaration
public List<FormTemplateField> FormFields { get; set; }
Property Value
Type Description
System.Collections.Generic.List<FormTemplateField>

FormTemplateId

FormTemplate id.

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

FormTemplateName

FormTemplate name.

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

IsInactive

Indicates whether the form template has been marked inactive.

Declaration
public bool IsInactive { get; set; }
Property Value
Type Description
System.Boolean

Processes

The ids of the JTProcesses (if any) to which this form template has been assigned.

Declaration
public IEnumerable<int> Processes { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.Int32>
Back to top Generated by DocFX