Show / Hide Table of Contents

Class CustomFieldValue

Wraps a custom field value.

Inheritance
System.Object
JTObject
CustomFieldValue
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 CustomFieldValue : JTObject

Properties

CustomFieldDataType

Data type of this field.

Declaration
public CustomFieldType.CustomFieldDataType_Enum CustomFieldDataType { get; }
Property Value
Type Description
CustomFieldType.CustomFieldDataType_Enum
Remarks

This property may not have been set, depending on where the CustomFieldValue came from.

CustomFieldTypeId

CustomFieldType id.

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

CustomFieldTypeName

CustomFieldType name.

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

FieldValue

The string form of the value assigned to the field.

Declaration
public string FieldValue { get; set; }
Property Value
Type Description
System.String
Remarks

When you set this value, the FieldValueId will be cleared.

FieldValueId

For List of Value fields, this is the Id of the selected field value. For other field types, this is Nothing.

Declaration
public int? FieldValueId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
Remarks

When you set this value, the FieldValue will be cleared.

Back to top Generated by DocFX